File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export const Route = createFileRoute({
30
30
component : RouteComp ,
31
31
validateSearch : z . object ( {
32
32
libraries : z . array ( librarySchema ) . optional ( ) . catch ( undefined ) ,
33
- status : statusSchema . optional ( ) . catch ( undefined ) ,
33
+ status : statusSchema . optional ( ) . default ( 'active' ) . catch ( 'active' ) ,
34
34
} ) ,
35
35
head : ( ) => ( {
36
36
meta : seo ( {
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ function SupportComp() {
75
75
</ Link >
76
76
< Link
77
77
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 "
79
79
>
80
80
< div className = "bg-gradient-to-br from-blue-600 to-purple-600 p-6 text-white" >
81
81
< h3 className = "text-xl font-semibold mb-2" > Paid Support</ h3 >
You can’t perform that action at this time.
0 commit comments