Skip to content

Commit

Permalink
Run formatter on frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed Oct 9, 2024
1 parent b7c71b6 commit 43d7998
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion front/src/app/components/annotation/AnnotationTasks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import type { AnnotationProject, AnnotationTask } from "@/lib/types";

import ClipAnnotationNotes from "../clip_annotations/ClipAnnotationNotes";
import ClipAnnotationTags from "../clip_annotations/ClipAnnotationTags";
import TagSearchBar from "../tags/TagSearchBar";
import ClipAnnotationSpectrogram from "./AnnotationClip";
import AnnotationContext from "./AnnotationContext";
import AnnotationTagPalette from "./AnnotationTagPalette";
import TagSearchBar from "../tags/TagSearchBar";

export default function AnnotateTasks({
annotationProject,
Expand Down
4 changes: 1 addition & 3 deletions front/src/lib/components/ui/Description.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@ export function EditableDescriptionData<T extends string | number | Date>({
if (!editing) {
return (
<DescriptionData className="flex flex-row justify-between">
<p className="whitespace-pre-wrap">
{value?.toLocaleString() ?? ""}
</p>
<p className="whitespace-pre-wrap">{value?.toLocaleString() ?? ""}</p>
<button
onClick={() => setEditing(true)}
className="ml-2 text-sm underline text-stone-500"
Expand Down

0 comments on commit 43d7998

Please sign in to comment.