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:
nicole mikołajczyk
2026-02-27 02:08:10 +01:00
parent a6fe41b661
commit 2096d84aee
2 changed files with 2 additions and 2 deletions

View File

@@ -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 = () => {

View File

@@ -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}