Skip to content

Commit b674684

Browse files
committed
fix: Update imports to use @heroui/react for Card and Button components
1 parent 98edeee commit b674684

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/MaintenancePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Card } from "@heroui/card";
1+
import { Card } from "@heroui/react";
22

33
export default function MaintenancePage() {
44
return (

frontend/src/components/ThemeSwitcher.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22
import { useTheme } from "next-themes";
33
import { useEffect, useState } from "react";
4-
import { Button } from "@heroui/button";
4+
import { Button } from "@heroui/react";
55
import { SunIcon, MoonIcon } from "@heroicons/react/24/outline";
66

77
export default function ThemeSwitcher() {

0 commit comments

Comments
 (0)