Skip to content

Commit 540de2c

Browse files
authored
fix(dashboard): Remove extra semicolon in settings/members page (#213)
* Remove extra semicolon in settings/members page * Remove unnecessary semicolon in settings/notifications page
1 parent b8ad8df commit 540de2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/start/src/components/notifications/table/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const NotificationsTable = ({ query }: Props) => {
2727
return (
2828
<>
2929
<DataTableToolbar table={table} />
30-
<DataTable table={table} loading={isLoading} />;
30+
<DataTable table={table} loading={isLoading} />
3131
</>
3232
);
3333
};

apps/start/src/components/settings/members/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const MembersTable = ({ query }: Props) => {
2626
return (
2727
<>
2828
<DataTableToolbar table={table} />
29-
<DataTable table={table} loading={isLoading} />;
29+
<DataTable table={table} loading={isLoading} />
3030
</>
3131
);
3232
};

0 commit comments

Comments
 (0)