@hexclave/next 1.0.27 → 1.0.28

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.
@@ -179,7 +179,7 @@ function generateRandomEmail() {
179
179
  const chars = "abcdefghijklmnopqrstuvwxyz0123456789";
180
180
  let id = "";
181
181
  for (let i = 0; i < 8; i++) id += chars[Math.floor(Math.random() * 36)];
182
- return `dev-${id}@test.hexclave.com`;
182
+ return `dev-${id}@devtool-quick-sign-up.example.com`;
183
183
  }
184
184
  function appendInlineMarkdown(container, text) {
185
185
  const tokenPattern = /(\[[^\]]+\]\([^)]+\)|`[^`\n]+`|\*\*[^*\n]+\*\*|__[^_\n]+__|\*[^*\n]+\*|_[^_\n]+_)/g;