Skip to content

Commit

Permalink
fix: typos in sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
harishdeivanayagam committed Jan 10, 2025
1 parent b0b34c2 commit e5313a0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions next.config.js

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/console/sheets/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export default function SheetPage() {
<TableBody>
{sources.map((source) => (
<TableRow key={source.id}>
<TableCell className="border-r-[1px] border-gray-200">{source.source.nickname}</TableCell>
<TableCell className="border-r-[1px] border-gray-200">{source.source.nickName}</TableCell>
{columns.map((column) => (
<TableCell className="border-r-[1px] border-gray-200" key={`${source.id}_${column.id}`}>{columnValues[`${source.id}_${column.id}`].value || "N/A"}</TableCell>
))}
Expand Down

0 comments on commit e5313a0

Please sign in to comment.