From 4569c958b1a007f92f130649fab1ab980f22b64a Mon Sep 17 00:00:00 2001 From: Aaron Delasy Date: Sun, 20 Oct 2024 14:51:53 +0300 Subject: [PATCH] Fix code style --- app/play/[level]/[attempt]/page.tsx | 4 ++-- app/play/[level]/page.tsx | 6 +++--- convex/playerresults.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/play/[level]/[attempt]/page.tsx b/app/play/[level]/[attempt]/page.tsx index 8804786..6d5a642 100644 --- a/app/play/[level]/[attempt]/page.tsx +++ b/app/play/[level]/[attempt]/page.tsx @@ -1,11 +1,11 @@ "use client"; import React from "react"; -import { Authenticated, useQuery } from "convex/react"; import { ChevronLeftIcon } from "@radix-ui/react-icons"; +import { Authenticated, useQuery } from "convex/react"; import Link from "next/link"; -import { Button } from "@/components/ui/button"; import { Visualizer } from "@/components/Visualizer"; +import { Button } from "@/components/ui/button"; import { api } from "@/convex/_generated/api"; export default function PlayLevelAttemptPage({ diff --git a/app/play/[level]/page.tsx b/app/play/[level]/page.tsx index 50f2275..1409584 100644 --- a/app/play/[level]/page.tsx +++ b/app/play/[level]/page.tsx @@ -277,8 +277,8 @@ export default function PlayLevelPage({ {tries && tries.attempts && tries.attempts.length > 0 && ( <> -
Tries
-
+
Tries
+
{tries.attempts.map((attempt, idx) => (