Fix compilation.

This commit is contained in:
Paulo Gustavo Veiga 2023-01-04 21:32:13 -08:00
parent 38f941ee1f
commit f1996ed7eb
2 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,6 @@ pipelines:
script:
- export CYPRESS_imageSnaphots="true"
- yarn install
- yarn bootstrap
- yarn build
- yarn lint
- yarn test:unit

View File

@ -124,7 +124,9 @@ const App = (): ReactElement => {
</QueryClientProvider>
</Provider>
) : (
<div>Loading ... </div>
<div>
<FormattedMessage id="dialog.loading" defaultMessage="Loading ..." />
</div>
);
};