diff --git a/web/ui/react-app/src/components/withStartingIndicator.tsx b/web/ui/react-app/src/components/withStartingIndicator.tsx index 7c3913a00a..c5d1adb1bc 100644 --- a/web/ui/react-app/src/components/withStartingIndicator.tsx +++ b/web/ui/react-app/src/components/withStartingIndicator.tsx @@ -23,21 +23,21 @@ export const StartingContent: FC = ({ status, isUnexpected

Starting up...

- {/* {status?.max! > 0 ? ( + {status && status.max > 0 ? (

Replaying WAL ({status?.current}/{status?.max})

- ) : null} */} + ) : null}
);