Skip to content

Commit

Permalink
boop (#849)
Browse files Browse the repository at this point in the history
  • Loading branch information
npinsker authored Jan 15, 2025
1 parent 20beaeb commit 22cfd26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions hunts/src/AnswerCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function AnswerCell({ row }: { row: Row<Puzzle> }) {
);
}
return (
<>
<div style={{ padding: '3px 0px' }}>
{row.original.guesses.map(({ id, text }) => (
<div
key={text}
Expand Down Expand Up @@ -101,6 +101,6 @@ export default function AnswerCell({ row }: { row: Row<Puzzle> }) {
<br />
</div>
))}
</>
</div>
);
}
4 changes: 2 additions & 2 deletions hunts/src/TagCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ function TagCell({ row }: { row: Row<Puzzle> }) {
const shouldShowMetaTags =
row.original.tags.filter((t) => t.is_meta).length > 1;
const tagsToShow = shouldShowMetaTags
? row.original.tags
: row.original.tags.filter((t) => !t.is_meta);
? row.original.tags.filter(t => t.name !== row.original.name)
: row.original.tags.filter((t) => !t.is_meta && t.name !== row.original.name);

return (
<>
Expand Down

0 comments on commit 22cfd26

Please sign in to comment.