Build fixes

This commit is contained in:
Darren Clarke 2023-08-07 11:54:47 +02:00
parent be835c7759
commit fc3eb1f7d9
6 changed files with 6 additions and 8 deletions

View file

@ -1,6 +1,6 @@
"use client";
import { FC, useEffect, PropsWithChildren } from "react";
import { FC, useEffect } from "react";
import { CircularProgress, Typography, Grid } from "@mui/material";
import { signIn, signOut, getSession } from "next-auth/react";
import { useLogin, useTranslate } from "react-admin";

View file

@ -2,7 +2,7 @@
import { Layout as RaLayout, LayoutProps, Sidebar } from "react-admin";
import AppBar from "./AppBar";
import Menu from "./Menu";
import { Menu } from "./Menu";
import { theme } from "./themes";
const CustomSidebar = (props: any) => <Sidebar {...props} size={200} />;

View file

@ -1,4 +1,4 @@
const languages = {
const languages = {
languages: [
{ id: "arb", name: "Arabic" },
{ id: "cy-GB", name: "Welsh" },

View file

@ -1,3 +1,3 @@
export default function Page() {
return null;
return undefined;
}