export name update

This commit is contained in:
Polaris
2024-09-02 06:04:03 -04:00
parent f3351822e4
commit 678eb099e2
2 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ import { useToast } from "@/components/ui/use-toast";
import { getTachiExport } from "./action"; import { getTachiExport } from "./action";
const Kamaitachi = () => { const KamaitachiExport = () => {
const { toast } = useToast(); const { toast } = useToast();
const handleExport = async () => { const handleExport = async () => {
@ -58,4 +58,4 @@ const Kamaitachi = () => {
); );
}; };
export { Kamaitachi }; export { KamaitachiExport };

View File

@ -1,10 +1,10 @@
import { Kamaitachi } from "./kamaitachiexport"; import { KamaitachiExport } from "./kamaitachiexport";
const SecuritySettingsPage = async () => { const KamaitachiSettingsPage = async () => {
return ( return (
<div> <div>
<Kamaitachi /> <KamaitachiExport />
</div> </div>
); );
}; };
export default SecuritySettingsPage; export default KamaitachiSettingsPage;