Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Migrate InfiniteScrollLoadingWheel to TypeScript
  • Loading branch information
frewsxcv committed Nov 4, 2025
commit dbef65723053b68f1b8b5e350edcbc5a6a9f2d73
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
// @flow

import classnames from "classnames";
import { ActivityIndicator, Body3 } from "components/SharedComponents";
import { View } from "components/styledComponents";
import type { Node } from "react";
import React from "react";
import { useTranslation } from "sharedHooks";

type Props = {
interface Props {
layout?: string,
isConnected?: boolean | null,
hideLoadingWheel: boolean,
Expand All @@ -19,7 +16,7 @@ const InfiniteScrollLoadingWheel = ( {
isConnected = true,
layout,
explore = false
}: Props ): Node => {
}: Props ) => {
const { t } = useTranslation( );

const loadingWheelClass = explore
Expand Down
Loading