nicolium: you can just remove random anys and it continues to work?
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
@@ -26,7 +26,7 @@ const InstanceInfoPanel: React.FC<IInstanceInfoPanel> = ({ host }) => {
|
||||
const dispatch = useAppDispatch();
|
||||
|
||||
const settings = useSettings();
|
||||
const remoteInstance: any = useAppSelector((state) => getRemoteInstance(state, host));
|
||||
const remoteInstance = useAppSelector((state) => getRemoteInstance(state, host));
|
||||
const pinned = settings.remote_timeline.pinnedHosts.includes(host);
|
||||
|
||||
const handlePinHost = () => {
|
||||
|
||||
@@ -53,7 +53,7 @@ const WhoToFollowPanel = ({ limit }: IWhoToFollowPanel) => {
|
||||
{isFetching ? (
|
||||
<PlaceholderSidebarSuggestions limit={limit} />
|
||||
) : (
|
||||
suggestionsToRender.map((suggestion: any) => (
|
||||
suggestionsToRender.map((suggestion) => (
|
||||
<AccountContainer
|
||||
key={suggestion.account_id}
|
||||
id={suggestion.account_id}
|
||||
|
||||
Reference in New Issue
Block a user