Skip to content

Commit

Permalink
CB-5140 fix: loader overlay (#2613)
Browse files Browse the repository at this point in the history
Co-authored-by: Evgenia Bezborodova <139753579+EvgeniaBzzz@users.noreply.github.com>
  • Loading branch information
Wroud and EvgeniaBzzz authored May 17, 2024
1 parent 10582d1 commit 0b27db0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/packages/core-app/src/Body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ export const Body = observer(function Body() {
<Loader className={s(styles, { loader: true })} suspense>
{Screen && <Screen {...screenService.routerService.params} />}
</Loader>
<Loader className={s(styles, { loader: true })} suspense>
<Loader suspense overlay>
<DialogsPortal />
</Loader>
<Loader className={s(styles, { loader: true })} suspense>
<Loader suspense overlay>
<Notifications />
</Loader>
</div>
Expand Down
1 change: 1 addition & 0 deletions webapp/packages/core-blocks/src/Loader/Loader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ export const Loader = observer<Props>(function Loader({
small={small}
inline={inline}
fullSize={fullSize}
overlay={overlay}
className={className}
inlineException={inlineException}
/>
Expand Down

0 comments on commit 0b27db0

Please sign in to comment.