Fix lint
This commit is contained in:
parent
0c27b62a25
commit
c60b6aa65d
2 changed files with 6 additions and 2 deletions
|
@ -217,7 +217,7 @@ export const ReactionDeck: React.FC<{
|
||||||
|
|
||||||
setActiveId(null);
|
setActiveId(null);
|
||||||
},
|
},
|
||||||
[dispatch, setActiveId],
|
[setActiveId],
|
||||||
);
|
);
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||||||
|
|
|
@ -189,7 +189,11 @@ export const SearchResults: React.FC<{ multiColumn: boolean }> = ({
|
||||||
onClickMore={handleSelectStatuses}
|
onClickMore={handleSelectStatuses}
|
||||||
>
|
>
|
||||||
{results.statuses.slice(0, INITIAL_DISPLAY).map((id) => (
|
{results.statuses.slice(0, INITIAL_DISPLAY).map((id) => (
|
||||||
<StatusQuoteManager key={id} id={id} contextType='explore' />
|
<StatusQuoteManager
|
||||||
|
key={id}
|
||||||
|
id={id}
|
||||||
|
contextType='explore'
|
||||||
|
/>
|
||||||
))}
|
))}
|
||||||
</SearchSection>
|
</SearchSection>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue