Skip to content

Commit ab113b4

Browse files
committed
fix conflicts
2 parents 74bd1fc + b4b3778 commit ab113b4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

resources/js/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { initializeTheme } from './hooks/use-appearance';
88
const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
99

1010
createInertiaApp({
11-
title: (title) => `${title} - ${appName}`,
11+
title: (title) => title ? `${title} - ${appName}` : appName,
1212
resolve: (name) => resolvePageComponent(`./pages/${name}.tsx`, import.meta.glob('./pages/**/*.tsx')),
1313
setup({ el, App, props }) {
1414
const root = createRoot(el);

resources/js/components/ui/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ function SidebarGroupLabel({
401401
data-sidebar="group-label"
402402
className={cn(
403403
"text-sidebar-foreground/70 ring-sidebar-ring flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium outline-hidden transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0",
404-
"group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",
404+
"group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0 group-data-[collapsible=icon]:select-none group-data-[collapsible=icon]:pointer-events-none",
405405
className
406406
)}
407407
{...props}

resources/js/ssr.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ createServer((page) =>
1010
createInertiaApp({
1111
page,
1212
render: ReactDOMServer.renderToString,
13-
title: (title) => `${title} - ${appName}`,
13+
title: (title) => title ? `${title} - ${appName}` : appName,
1414
resolve: (name) => resolvePageComponent(`./pages/${name}.tsx`, import.meta.glob('./pages/**/*.tsx')),
1515
setup: ({ App, props }) => {
1616
/* eslint-disable */

routes/settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'auth',
1010
ValidateSessionWithWorkOS::class,
1111
])->group(function () {
12-
Route::redirect('settings', 'settings/profile');
12+
Route::redirect('settings', '/settings/profile');
1313

1414
Route::get('settings/profile', [ProfileController::class, 'edit'])->name('profile.edit');
1515
Route::patch('settings/profile', [ProfileController::class, 'update'])->name('profile.update');

0 commit comments

Comments
 (0)