diff --git a/db/mysql/migrations/04_team_redesign/migration.sql b/db/mysql/migrations/04_team_redesign/migration.sql
index 57f8dc93..bf64d45f 100644
--- a/db/mysql/migrations/04_team_redesign/migration.sql
+++ b/db/mysql/migrations/04_team_redesign/migration.sql
@@ -17,7 +17,7 @@ ALTER TABLE `website` ADD COLUMN `created_by` VARCHAR(36) NULL,
ADD COLUMN `team_id` VARCHAR(36) NULL;
-- MigrateData
-UPDATE "website" SET created_by = user_id WHERE team_id IS NULL;
+UPDATE `website` SET created_by = user_id WHERE team_id IS NULL;
-- DropTable
DROP TABLE `team_website`;
diff --git a/src/app/(main)/App.tsx b/src/app/(main)/App.tsx
index 74be8292..406c2f16 100644
--- a/src/app/(main)/App.tsx
+++ b/src/app/(main)/App.tsx
@@ -27,7 +27,7 @@ export function App({ children }) {
{children}
{process.env.NODE_ENV === 'production' && !pathname.includes('/share/') && (
-
+
)}
>
);