Skip to content

Commit

Permalink
[Stack Monitoring] Remove visible semicolon from LoadingPage (elastic…
Browse files Browse the repository at this point in the history
…#146500)

Fixes elastic#146342

There was a semicolon added to the JSX markup which would show on slower
devices where loading takes longer.
Please refer to the issue for a screenshot of that.

(cherry picked from commit 5c13741)
  • Loading branch information
miltonhultgren committed Nov 29, 2022
1 parent 7375f91 commit 81ade72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const LoadingPage = ({ staticLoadingState }: { staticLoadingState?: boole
if (staticLoadingState) {
return (
<PageTemplate title={title}>
<PageLoading />;
<PageLoading />
</PageTemplate>
);
}
Expand Down

0 comments on commit 81ade72

Please sign in to comment.