Skip to content

Commit

Permalink
make N/A text and not a button
Browse files Browse the repository at this point in the history
  • Loading branch information
shafu0x committed Aug 1, 2024
1 parent bbc614e commit f064c10
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions components/note-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,7 @@ const NoteTable: React.FC<any> = ({}) => {
</button>
);
} else {
component = (
<span className="rounded-[5px] bg-[#282828] text-sm min-w-fit px-4 py-0.5">
n/a
</span>
);
component = <span className="text-sm min-w-fit px-4 py-0.5">N/A</span>;
}

return {
Expand Down

0 comments on commit f064c10

Please sign in to comment.