Skip to content

Commit 5f5d843

Browse files
[fixed 📌] cloud deployment
1 parent 04a3523 commit 5f5d843

5 files changed

Lines changed: 4 additions & 6 deletions

File tree

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default function RootLayout({
3333
suppressHydrationWarning={true}
3434
className={cn(
3535
"relative h-full font-sans antialiased bg-zinc-100 dark:bg-zinc-900",
36-
inter.className
36+
inter.className,
3737
)}
3838
>
3939
<ThemeProvider

src/cloud/index.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/components/contents/ProfileGrid.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const ProfileGrid = async ({ page, searchParams }: Props) => {
2626
.where(
2727
or(
2828
ilike(users.name, `%${searchParams}%`),
29-
ilike(users.location, `%${searchParams}%`)
30-
)
29+
ilike(users.location, `%${searchParams}%`),
30+
),
3131
)
3232
.limit(itemPerPage)
3333
.offset(offset)

src/components/forms/CreateProfile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const CreateProfile = ({
5454
/** image handler */
5555
const handleImage = async (
5656
event: ChangeEvent<HTMLInputElement>,
57-
fieldChange: (value: string) => void
57+
fieldChange: (value: string) => void,
5858
) => {
5959
event.preventDefault();
6060
/** File reader */

src/constants/LoadingSpinner.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export const LoadingSpinner = ({
2121
strokeLinecap="round"
2222
strokeLinejoin="round"
2323
className={cn(classes, "animate-spin")}
24-
2524
>
2625
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
2726
</svg>

0 commit comments

Comments
 (0)