Skip to content

Commit 43d7998

Browse files
committed
Run formatter on frontend
1 parent b7c71b6 commit 43d7998

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

front/src/app/components/annotation/AnnotationTasks.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ import type { AnnotationProject, AnnotationTask } from "@/lib/types";
1616

1717
import ClipAnnotationNotes from "../clip_annotations/ClipAnnotationNotes";
1818
import ClipAnnotationTags from "../clip_annotations/ClipAnnotationTags";
19+
import TagSearchBar from "../tags/TagSearchBar";
1920
import ClipAnnotationSpectrogram from "./AnnotationClip";
2021
import AnnotationContext from "./AnnotationContext";
2122
import AnnotationTagPalette from "./AnnotationTagPalette";
22-
import TagSearchBar from "../tags/TagSearchBar";
2323

2424
export default function AnnotateTasks({
2525
annotationProject,

front/src/lib/components/ui/Description.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ export function EditableDescriptionData<T extends string | number | Date>({
7777
if (!editing) {
7878
return (
7979
<DescriptionData className="flex flex-row justify-between">
80-
<p className="whitespace-pre-wrap">
81-
{value?.toLocaleString() ?? ""}
82-
</p>
80+
<p className="whitespace-pre-wrap">{value?.toLocaleString() ?? ""}</p>
8381
<button
8482
onClick={() => setEditing(true)}
8583
className="ml-2 text-sm underline text-stone-500"

0 commit comments

Comments
 (0)