Skip to content

Commit 6e3ac1f

Browse files
committed
fix conflicts
2 parents 8c52723 + bb97832 commit 6e3ac1f

20 files changed

+36
-34
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ jobs:
3737
- name: Build Assets
3838
run: npm run build
3939

40-
- name: Create SQLite Database
41-
run: touch database/database.sqlite
42-
4340
- name: Install Dependencies
4441
run: composer install --no-interaction --prefer-dist --optimize-autoloader
4542

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.phpunit.cache
2+
/bootstrap/ssr
23
/node_modules
34
/public/build
45
/public/hot

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"dev": "vite",
88
"format": "prettier --write resources/",
99
"format:check": "prettier --check resources/",
10-
"lint": "eslint . --fix"
10+
"lint": "eslint . --fix",
11+
"types": "tsc --noEmit"
1112
},
1213
"devDependencies": {
1314
"@eslint/js": "^9.19.0",

resources/css/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
@plugin 'tailwindcss-animate';
44

5+
@source "../views";
56
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
67

78
@custom-variant dark (&:is(.dark *));

resources/js/components/app-content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { SidebarInset } from '@/components/ui/sidebar';
22
import * as React from 'react';
33

4-
interface AppContentProps extends React.ComponentProps<'div'> {
4+
interface AppContentProps extends React.ComponentProps<'main'> {
55
variant?: 'header' | 'sidebar';
66
}
77

resources/js/components/app-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export function AppHeader({ breadcrumbs = [] }: AppHeaderProps) {
6363
<SheetHeader className="flex justify-start text-left">
6464
<AppLogoIcon className="h-6 w-6 fill-current text-black dark:text-white" />
6565
</SheetHeader>
66-
<div className="mt-6 flex h-full flex-1 flex-col space-y-4">
66+
<div className="p-4 flex h-full flex-1 flex-col space-y-4">
6767
<div className="flex h-full flex-col justify-between text-sm">
6868
<div className="flex flex-col space-y-4">
6969
{mainNavItems.map((item) => (

resources/js/components/heading.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
export default function Heading({ title, description }: { title: string; description?: string }) {
22
return (
3-
<>
4-
<div className="mb-8 space-y-0.5">
5-
<h2 className="text-xl font-semibold tracking-tight">{title}</h2>
6-
{description && <p className="text-muted-foreground text-sm">{description}</p>}
7-
</div>
8-
</>
3+
<div className="mb-8 space-y-0.5">
4+
<h2 className="text-xl font-semibold tracking-tight">{title}</h2>
5+
{description && <p className="text-muted-foreground text-sm">{description}</p>}
6+
</div>
97
);
108
}

resources/js/components/icon.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import { cn } from '@/lib/utils';
22
import { type LucideProps } from 'lucide-react';
3+
import { type ComponentType } from 'react';
34

45
interface IconProps extends Omit<LucideProps, 'ref'> {
5-
iconNode: React.ComponentType<LucideProps>;
6+
iconNode: ComponentType<LucideProps>;
67
}
78

89
export function Icon({ iconNode: IconComponent, className, ...props }: IconProps) {

resources/js/components/input-error.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { cn } from '@/lib/utils';
2-
import { HTMLAttributes } from 'react';
2+
import { type HTMLAttributes } from 'react';
33

44
export default function InputError({ message, className = '', ...props }: HTMLAttributes<HTMLParagraphElement> & { message?: string }) {
55
return message ? (

resources/js/components/nav-footer.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import { Icon } from '@/components/icon';
22
import { SidebarGroup, SidebarGroupContent, SidebarMenu, SidebarMenuButton, SidebarMenuItem } from '@/components/ui/sidebar';
33
import { type NavItem } from '@/types';
4+
import { type ComponentPropsWithoutRef } from 'react';
45

56
export function NavFooter({
67
items,
78
className,
89
...props
9-
}: React.ComponentPropsWithoutRef<typeof SidebarGroup> & {
10+
}: ComponentPropsWithoutRef<typeof SidebarGroup> & {
1011
items: NavItem[];
1112
}) {
1213
return (

0 commit comments

Comments
 (0)