create-message-kit 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,6 @@ import { run, HandlerContext } from "@xmtp/message-kit";
3
3
  run(async (context: HandlerContext) => {
4
4
  // Get the message and the address from the sender
5
5
  const { content, sender } = context.message;
6
- console.log(content);
7
6
  // To reply, just call `reply` on the HandlerContext.
8
7
  await context.send(`gm`);
9
8
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-message-kit",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "index.js",