Skip to content

Commit d742d82

Browse files
committed
fixes
1 parent 2b1fb7b commit d742d82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/routes/_libraries/partners.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const Route = createFileRoute({
3030
component: RouteComp,
3131
validateSearch: z.object({
3232
libraries: z.array(librarySchema).optional().catch(undefined),
33-
status: statusSchema.optional().catch(undefined),
33+
status: statusSchema.optional().default('active').catch('active'),
3434
}),
3535
head: () => ({
3636
meta: seo({

src/routes/_libraries/support.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function SupportComp() {
7575
</Link>
7676
<Link
7777
to="/paid-support"
78-
className="group bg-white/80 shadow-xl shadow-gray-500/20 rounded-lg dark:border border-gray-500/20 dark:bg-black/40 dark:shadow-none overflow-hidden hover:shadow-2xl transition-shadow duration-200"
78+
className="group bg-white/80 shadow-xl shadow-gray-500/20 rounded-lg dark:border border-gray-500/20 dark:bg-black/40 dark:shadow-none overflow-hidden hover:shadow-2xl transition-shadow duration-200 flex flex-column "
7979
>
8080
<div className="bg-gradient-to-br from-blue-600 to-purple-600 p-6 text-white">
8181
<h3 className="text-xl font-semibold mb-2">Paid Support</h3>

0 commit comments

Comments
 (0)