fix(dashboard): Remove extra semicolon in settings/members page (#213)

* Remove extra semicolon in settings/members page

* Remove unnecessary semicolon in settings/notifications page
This commit is contained in:
Mr. Will
2025-10-28 04:50:21 +08:00
committed by GitHub
parent b8ad8dfede
commit 540de2cd53
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ export const NotificationsTable = ({ query }: Props) => {
return (
<>
<DataTableToolbar table={table} />
<DataTable table={table} loading={isLoading} />;
<DataTable table={table} loading={isLoading} />
</>
);
};

View File

@@ -26,7 +26,7 @@ export const MembersTable = ({ query }: Props) => {
return (
<>
<DataTableToolbar table={table} />
<DataTable table={table} loading={isLoading} />;
<DataTable table={table} loading={isLoading} />
</>
);
};