theme.colors.red,
+ flex: 1,
+ alignItems: "center"
+ })}
+ >
+ {error.errors.map((x, i) => (
+ theme.colors.white })}>
+ {x}
+
+ ))}
+
+ );
+};
diff --git a/front/packages/ui/src/navbar/index.tsx b/front/packages/ui/src/navbar/index.tsx
index 4f047e35..00755213 100644
--- a/front/packages/ui/src/navbar/index.tsx
+++ b/front/packages/ui/src/navbar/index.tsx
@@ -19,10 +19,11 @@
*/
import useTranslation from "next-translate/useTranslation";
-import { Library, LibraryP, Page, Paged, Fetch, QueryIdentifier } from "@kyoo/models";
-import { useYoshiki } from "yoshiki/native";
+import { Library, LibraryP, Page, Paged, QueryIdentifier } from "@kyoo/models";
import { IconButton, Header, Avatar, A, ts } from "@kyoo/primitives";
+import { useYoshiki } from "yoshiki/native";
import { Text, View } from "react-native";
+import { Fetch } from "../fetch";
import { KyooLongLogo } from "./icon";
const tooltip = (tooltip: string): object => ({});
@@ -64,12 +65,13 @@ export const Navbar = () => {