Skip to content

Commit

Permalink
centered loading
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelUnkey committed Jan 14, 2025
1 parent eead2f8 commit 152f95c
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,13 @@ export default async function AuditPage(props: Props) {

<div className="flex flex-col gap-8 mt-8">
<Filters />
<Suspense fallback={<Loading />}>
<Suspense
fallback={
<div className="flex justify-center item-center mx-auto">
<Loading />
</div>
}
>
<AuditLogTable
workspaceId={namespace.workspace.id}
namespaceId={namespace.id}
Expand Down

0 comments on commit 152f95c

Please sign in to comment.