Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
steezeburger committed Aug 16, 2024
1 parent b5676b0 commit 8bcd643
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/src/components/WikipediaBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const SearchBar = memo(({ onSearch }: { onSearch: (term: string, isHomepage: boo
</div>
);
});
SearchBar.displayName = "SearchBar";

const PaneComponent = memo(({ pane, index, onClose, onClick, clickedLinks }: {
pane: Pane;
Expand Down Expand Up @@ -80,6 +81,7 @@ const PaneComponent = memo(({ pane, index, onClose, onClick, clickedLinks }: {
</div>
);
});
PaneComponent.displayName = "PaneComponent";

const WikipediaBrowser: React.FC = () => {
const [panes, setPanes] = useState<Pane[]>([]);
Expand Down

0 comments on commit 8bcd643

Please sign in to comment.