Skip to content

Commit

Permalink
refactor: Newline after use client, remove unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroWave022 committed Sep 19, 2024
1 parent 5b44dc5 commit 849926e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/home/HelloWorld.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use client';

import { api } from '@/lib/api/client';

function HelloWorld() {
Expand Down
4 changes: 2 additions & 2 deletions src/components/storage/CategorySelector.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client';
import { useTranslations } from 'next-intl';

import { useQueryState } from 'nuqs';
import { createSearchParamsCache, parseAsString } from 'nuqs/parsers';
import { parseAsString } from 'nuqs/parsers';
import { Combobox } from '../ui/Combobox';

type CategorySelectorProps = {
Expand Down
1 change: 1 addition & 0 deletions src/components/storage/ShoppingCartClearButton.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use client';

import { Button } from '@/components/ui/Button';
import { X } from 'lucide-react';
import { useLocalStorage } from 'usehooks-ts';
Expand Down
1 change: 1 addition & 0 deletions src/components/storage/SortSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use client';

import {
Select,
SelectContent,
Expand Down

0 comments on commit 849926e

Please sign in to comment.