Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Opeyem1a committed Sep 11, 2024
1 parent 60ee840 commit 954c8d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const columns: ColumnDef<Student>[] = [
const empty = !getValue()
return (
<Text element="p" as={empty ? "mutedText" : "smallText"}>
{getValue() ?? "None"}
{empty ? "None" : String(getValue()) }
</Text>
)
},
Expand Down

0 comments on commit 954c8d4

Please sign in to comment.