We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b18164a commit 56bee4eCopy full SHA for 56bee4e
src/features/Overview/ShredsProgression/index.tsx
@@ -2,8 +2,15 @@ import { Flex } from "@radix-ui/themes";
2
import Card from "../../../components/Card";
3
import CardHeader from "../../../components/CardHeader";
4
import ShredsTiles from "./ShredsTiles";
5
+import { useAtomValue } from "jotai";
6
+import { ClientEnum } from "../../../api/entities";
7
+import { clientAtom } from "../../../atoms";
8
9
export default function ShredsProgression() {
10
+ const client = useAtomValue(clientAtom);
11
+
12
+ if (client !== ClientEnum.Firedancer) return;
13
14
return (
15
<Card>
16
<Flex direction="column" height="100%" gap="2">
0 commit comments