Skip to content

Commit aef6521

Browse files
committed
fix conflicts
2 parents 0a64b14 + 2d6a493 commit aef6521

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"htmlWhitespaceSensitivity": "css",
66
"printWidth": 150,
77
"plugins": ["prettier-plugin-organize-imports", "prettier-plugin-tailwindcss"],
8-
"tailwindFunctions": ["clsx", "cn"],
8+
"tailwindFunctions": ["clsx", "cn", "cva"],
99
"tailwindStylesheet": "resources/css/app.css",
1010
"tabWidth": 4,
1111
"overrides": [

components.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://shadcn-vue.com/schema.json",
33
"style": "default",
4-
"typescript": true,
4+
"tsx": true,
55
"tailwind": {
66
"config": "tailwind.config.js",
77
"css": "resources/css/app.css",

resources/js/layouts/settings/Layout.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const currentPath = page.props.ziggy?.location ? new URL(page.props.ziggy.locati
2525
<div class="px-4 py-6">
2626
<Heading title="Settings" description="Manage your profile and account settings" />
2727

28-
<div class="flex flex-col space-y-8 md:space-y-0 lg:flex-row lg:space-y-0 lg:space-x-12">
28+
<div class="flex flex-col lg:flex-row lg:space-x-12">
2929
<aside class="w-full max-w-xl lg:w-48">
3030
<nav class="flex flex-col space-y-1 space-x-0">
3131
<Button
@@ -42,7 +42,7 @@ const currentPath = page.props.ziggy?.location ? new URL(page.props.ziggy.locati
4242
</nav>
4343
</aside>
4444

45-
<Separator class="my-6 md:hidden" />
45+
<Separator class="my-6 lg:hidden" />
4646

4747
<div class="flex-1 md:max-w-2xl">
4848
<section class="max-w-xl space-y-12">

resources/js/ssr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createInertiaApp } from '@inertiajs/vue3';
22
import createServer from '@inertiajs/vue3/server';
3-
import { renderToString } from '@vue/server-renderer';
3+
import { renderToString } from 'vue/server-renderer';
44
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
55
import { createSSRApp, DefineComponent, h } from 'vue';
66
import { ZiggyVue } from 'ziggy-js';

0 commit comments

Comments
 (0)