- {accounts.map((user) => (
-
- ))}
+ >
+
+
+
+
+ ))}
+ {accounts.length >= 3 && windowWidth <= 700 ? (
+
+
+
+
+
+
+ {sortedList.slice(2).map((user) => (
+ changeAccount(user)}
+ className="size-9 inline-flex items-center justify-center hover:bg-white/10 rounded-md"
+ >
+
+
+
+
+
+
+ ))}
+
+
+
+
+ ) : null}
);
}
diff --git a/apps/desktop2/src/routes/index.tsx b/apps/desktop2/src/routes/index.tsx
index 45117877..a312e91c 100644
--- a/apps/desktop2/src/routes/index.tsx
+++ b/apps/desktop2/src/routes/index.tsx
@@ -18,7 +18,7 @@ export const Route = createFileRoute("/")({
if (!accounts.length) {
throw redirect({
- to: "/landing",
+ to: "/landing/",
replace: true,
});
}
@@ -68,7 +68,7 @@ function Screen() {