Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbykolev committed Oct 22, 2024
1 parent 6376f3d commit de25642
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ const ReleaseNotesBanner = () => {

const { open, onClose } = useReleaseNotes(releaseNotesUrl);

const notClicable = releaseNotesUrl.includes(URL_NOT_CLICKABLE_MARKER);
const notClickable = releaseNotesUrl.includes(URL_NOT_CLICKABLE_MARKER);

if (!open) {
return null;
}

return (
<DashboardBanner to={releaseNotesUrl} isLink={!notClicable} onClose={onClose}>
<DashboardBanner to={releaseNotesUrl} isLink={!notClickable} onClose={onClose}>
<Trans
i18nKey="releaseNotes.title"
components={{
Expand Down

0 comments on commit de25642

Please sign in to comment.