Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default defineConfig({
},

vite: {
// @ts-ignore
plugins: [tailwindcss()],
},

Expand Down
2 changes: 1 addition & 1 deletion src/modules/auth/auth.actions.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// src/modules/auth/auth.actions.ts
import { defineAction, ActionError } from 'astro:actions';
import { SignJWT } from 'jose';
import { loginSchema } from './auth.schema';
import { SignJWT } from 'jose';

export const login = defineAction({
accept: 'json',
Expand Down
2 changes: 1 addition & 1 deletion src/modules/dashboard/components/dashboard.header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function DashboardHeader({ onClick, isSidebarOpen }: DashboardHeaderProps
</Button>
</AlertDialogTrigger>

<AlertDialogContent className="border border-white/10 bg-background/95 backdrop-blur-lg max-w-[400px]">
<AlertDialogContent className="border border-white/10 bg-background/95 backdrop-blur-lg max-w-100">
<AlertDialogHeader>
<AlertDialogTitle className="text-xl font-semibold tracking-tight">
End your session?
Expand Down
Loading