Skip to content

Commit

Permalink
move BlockedDevicesBoundarie to folder
Browse files Browse the repository at this point in the history
  • Loading branch information
LoV432 committed Mar 3, 2024
1 parent 4cf9f1c commit d015c4b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/user-cards/UserCard.client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
getAllBlockedDevices,
unblockDevice as unblockUser
} from '@/lib/block-user-script.server';
import { allBlockedDevices as allBlockedDevicesState } from '../boundaries/BlockedDevicesBoundarie.client';
import { allBlockedDevices as allBlockedDevicesState } from '../boundaries/BlockedDevices/BlockedDevicesBoundarie.client';
export default function UserCard({ user }: { user: userReturnType }) {
const [localUpdateTime, setLocalUpdateTime] = useState('');
const [showDetails, setShowDetails] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Dashboard from './components/dashboard/Dashboard.server';
import UserCards from './components/user-cards/UserCards.server';
import SpeedBoundarie from './components/boundaries/SpeedBoundarie.client';
import BlockedDevicesBoundarie from './components/boundaries/BlockedDevicesBoundarie.server';
import BlockedDevicesBoundarie from './components/boundaries/BlockedDevices/BlockedDevicesBoundarie.server';
import { Provider } from 'jotai';
export const dynamic = 'force-dynamic';
export default function Home() {
Expand Down

0 comments on commit d015c4b

Please sign in to comment.