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