summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/LoadingIndicator.tsx
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-18 19:09:41 -0400
committerN. Taylor Mullen <[email protected]>2025-04-18 19:14:36 -0400
commit40e11e053c1cf304255c21f91e950c520285c6c5 (patch)
treea2897d6236641d30b7a1014466967edf6e298ba1 /packages/cli/src/ui/components/LoadingIndicator.tsx
parent2a850ed0511033ffa88b450643d79bb47ae18693 (diff)
Fix remaining tslint errors (YAY).
- Also updated ci.yml to ensure that linting failures will break the build. Fully fixes https://b.corp.google.com/issues/411384603
Diffstat (limited to 'packages/cli/src/ui/components/LoadingIndicator.tsx')
-rw-r--r--packages/cli/src/ui/components/LoadingIndicator.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/cli/src/ui/components/LoadingIndicator.tsx b/packages/cli/src/ui/components/LoadingIndicator.tsx
index 442ddf26..defef06c 100644
--- a/packages/cli/src/ui/components/LoadingIndicator.tsx
+++ b/packages/cli/src/ui/components/LoadingIndicator.tsx
@@ -8,7 +8,7 @@ interface LoadingIndicatorProps {
elapsedTime: number;
}
-const LoadingIndicator: React.FC<LoadingIndicatorProps> = ({
+export const LoadingIndicator: React.FC<LoadingIndicatorProps> = ({
isLoading,
currentLoadingPhrase,
elapsedTime,
@@ -30,5 +30,3 @@ const LoadingIndicator: React.FC<LoadingIndicatorProps> = ({
</Box>
);
};
-
-export default LoadingIndicator;