fix: cache is not exportet from react (#417)

* fix: cache is not exportet from react

* fix: format issue

* fix: type issue
This commit is contained in:
Meier Lukas
2024-05-01 21:17:28 +02:00
committed by GitHub
parent 48c2473ab3
commit fba767bde3
8 changed files with 17 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ import "@mantine/core/styles.css";
import { ColorSchemeScript, createTheme, MantineProvider } from "@mantine/core";
import { auth } from "@homarr/auth";
import { auth } from "@homarr/auth/next";
import { ModalProvider } from "@homarr/modals";
import { Notifications } from "@homarr/notifications";

View File

@@ -1,7 +1,7 @@
import { fetchRequestHandler } from "@trpc/server/adapters/fetch";
import { appRouter, createTRPCContext } from "@homarr/api";
import { auth } from "@homarr/auth";
import { auth } from "@homarr/auth/next";
import { logger } from "@homarr/log";
/**

View File

@@ -1,4 +1,4 @@
import { auth } from "@homarr/auth";
import { auth } from "@homarr/auth/next";
import type { BoardPermissionsProps } from "@homarr/auth/shared";
import { constructBoardPermissions } from "@homarr/auth/shared";

View File

@@ -1,7 +1,7 @@
import type { AvatarProps, MantineSize } from "@mantine/core";
import { Avatar } from "@mantine/core";
import { auth } from "@homarr/auth";
import { auth } from "@homarr/auth/next";
interface UserAvatarProps {
size: MantineSize;