Skip to content

Commit cf1ab68

Browse files
committed
style: reformat codebase
1 parent ba13733 commit cf1ab68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/(app)/challenges/content.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import { Suspense, useState } from "react";
55
import type { TagState } from "./_filter/tag";
66

77
import { Button } from "@/components/ui/button";
8+
import { Skeleton } from "@/components/ui/skeleton";
89
import { graphql } from "@/gql";
910
import { QuestionDifficulty, type QuestionWhereInput } from "@/gql/graphql";
1011
import { useSuspenseQuery } from "@apollo/client/react";
1112
import FilterSection from "./_filter";
1213
import QuestionCard from "./_question";
1314
import { getQuestionSolvedStatus } from "./_question/solved-status";
1415
import type { SolvedStatus } from "./model";
15-
import { Skeleton } from "@/components/ui/skeleton";
1616

1717
export const LIST_QUESTIONS = graphql(`
1818
query ListQuestions($where: QuestionWhereInput, $after: Cursor) {
@@ -70,7 +70,7 @@ export default function ChallengePageContent() {
7070
setTags={setTags}
7171
/>
7272
<div className="flex-1">
73-
<Suspense fallback={<Skeleton className="w-full h-48" />}>
73+
<Suspense fallback={<Skeleton className="h-48 w-full" />}>
7474
<ChallengeQuestionsList
7575
where={where}
7676
solvedStatusContains={tags.solvedStatus}

0 commit comments

Comments
 (0)