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:
@@ -27,7 +27,7 @@ export const NotificationsTable = ({ query }: Props) => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<DataTableToolbar table={table} />
|
<DataTableToolbar table={table} />
|
||||||
<DataTable table={table} loading={isLoading} />;
|
<DataTable table={table} loading={isLoading} />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ export const MembersTable = ({ query }: Props) => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<DataTableToolbar table={table} />
|
<DataTableToolbar table={table} />
|
||||||
<DataTable table={table} loading={isLoading} />;
|
<DataTable table={table} loading={isLoading} />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user