Skip to content

Commit

Permalink
loading
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Nov 30, 2023
1 parent 8cb26aa commit a04c73f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/dashboard/src/components/tables/vault/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export async function Table({ path }) {
const { data } = await getVault({ path });

return (
<div className="mt-6 h-[calc(100vh-240px)] border">
<div className="mt-6 h-[calc(100vh-180px)] border">
<DataTable data={data} />
{data.length === 0 && <EmptyTable type={path} />}
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/website/src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ export function middleware(request: NextRequest) {

export const config = {
matcher: [
"/((?!.*\\.|api|_next/static|_next/image|favicon.ico||robots.txt|auth\\/).*)",
"/((?!.*\\.|api|_next/static|_next/image|favicon.ico|robots.txt|auth\\/).*)",
],
};

0 comments on commit a04c73f

Please sign in to comment.