Skip to content

Commit

Permalink
feat(certif): Change SCO PixBanner to PixNotification
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiaPena committed Dec 17, 2024
1 parent b5482e9 commit 1ea16a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions certif/app/components/layout/banners.gjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import PixBannerAlert from '@1024pix/pix-ui/components/pix-banner-alert';
import PixNotificationAlert from '@1024pix/pix-ui/components/pix-notification-alert';
import { action } from '@ember/object';
import { service } from '@ember/service';
import Component from '@glimmer/component';
Expand Down Expand Up @@ -36,9 +37,9 @@ export default class Banners extends Component {

<template>
{{#if this.shouldDisplaySCOInformationBanner}}
<PixBannerAlert @canCloseBanner='true' class='banners'>
<PixNotificationAlert @type='information' @withIcon={{true}} class='banners'>
{{t 'pages.sco.banner.information' htmlSafe=true}}
</PixBannerAlert>
</PixNotificationAlert>
{{/if}}

{{#if this.shouldDisplayLocaleNotSupportedBanner}}
Expand Down

0 comments on commit 1ea16a5

Please sign in to comment.