react query ftw

This commit is contained in:
2025-08-14 22:46:42 +03:00
parent 78f792578d
commit 502a25fe52
24 changed files with 365 additions and 462 deletions

View File

@@ -1,7 +1,7 @@
// chatgpt
function rewriteCookieDomain(rawCookie: string): string {
return rawCookie
.replace(/;?\s*Domain=[^;]+/i, '')
.replace(/;?\s*Domain=[^;]+/i, "")
.concat(`; Domain=localhost:3000`);
}