From 540de2cd539b28867641ca15dac6af453db949cb Mon Sep 17 00:00:00 2001 From: "Mr. Will" Date: Tue, 28 Oct 2025 04:50:21 +0800 Subject: [PATCH] fix(dashboard): Remove extra semicolon in settings/members page (#213) * Remove extra semicolon in settings/members page * Remove unnecessary semicolon in settings/notifications page --- apps/start/src/components/notifications/table/index.tsx | 2 +- apps/start/src/components/settings/members/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/start/src/components/notifications/table/index.tsx b/apps/start/src/components/notifications/table/index.tsx index 70f28e04..f658cda5 100644 --- a/apps/start/src/components/notifications/table/index.tsx +++ b/apps/start/src/components/notifications/table/index.tsx @@ -27,7 +27,7 @@ export const NotificationsTable = ({ query }: Props) => { return ( <> - ; + ); }; diff --git a/apps/start/src/components/settings/members/index.tsx b/apps/start/src/components/settings/members/index.tsx index 60f5340a..a23ca81b 100644 --- a/apps/start/src/components/settings/members/index.tsx +++ b/apps/start/src/components/settings/members/index.tsx @@ -26,7 +26,7 @@ export const MembersTable = ({ query }: Props) => { return ( <> - ; + ); };