Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/results.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const Results = ({
return title
.split("_")
.map((word, index) =>
index === 0 ? word.charAt(0).toUpperCase() + word.slice(1) : word,
index === 0 ? word.charAt(0).toUpperCase() + word.slice(1) : word
)
.join(" ");
};
Expand Down Expand Up @@ -68,7 +68,7 @@ export const Results = ({
</TabsTrigger>
</TabsList>
<TabsContent value="table" className="flex-grow">
<div className="sm:min-h-[10px] relative">
<div className="sm:min-h-[10px] relative overflow-x-auto">
<Table className="min-w-full divide-y divide-border">
<TableHeader className="bg-secondary sticky top-0 shadow-sm">
<TableRow>
Expand All @@ -92,7 +92,7 @@ export const Results = ({
>
{formatCellValue(
column,
company[column as keyof Unicorn],
company[column as keyof Unicorn]
)}
</TableCell>
))}
Expand Down