diff --git a/CHANGELOG b/CHANGELOG
index 9f9e816b3..635dc2c4f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## Prerelease
+## 1.3.5 2024-10-23
+
+### Updated
+
+- Create banner container in Layout component and add EDS link to that container (SCC-4260)
+- Sentence case and rearrange search options (SCC-4260)
+- Call number search scope to search dropdown options [(SCC-4260)](https://newyorkpubliclibrary.atlassian.net/browse/SCC-4260)
+- Search tip per search scope [(SCC-4263)](https://newyorkpubliclibrary.atlassian.net/browse/SCC-4263)
### Fixed
### [1.3.4] Hotfix 2024-10-17
@@ -49,15 +56,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Updated
-- Create banner container in Layout component and add EDS link to that container (SCC-4260)
- Bump DS version to 3.4.0
- Bump nvmrc version to Node 20.
- Update error message in Item Filter Year to include new error message prefix from the DS.
- Integrate view_all query param on client side and remove batched fetch (SCC-4287)
- Replaced travis with github actions (SCC-4218)
-- Sentence case and rearrange search options (SCC-4260)
-- Call number search scope to search dropdown options [(SCC-4260)](https://newyorkpubliclibrary.atlassian.net/browse/SCC-4260)
-- Search tip per search scope [(SCC-4263)](https://newyorkpubliclibrary.atlassian.net/browse/SCC-4263)
## [1.2.4] 2024-08-29
diff --git a/src/components/EDSBanner.tsx b/src/components/EDSBanner.tsx
index d2c4dff95..8f41e1efe 100644
--- a/src/components/EDSBanner.tsx
+++ b/src/components/EDSBanner.tsx
@@ -1,4 +1,4 @@
-import { Text, Banner } from "@nypl/design-system-react-components"
+import { Banner } from "@nypl/design-system-react-components"
import ExternalLink from "./Links/ExternalLink/ExternalLink"
import React from "react"
@@ -13,19 +13,19 @@ const EDSBanner = () => {
className={styles.banner}
type="informative"
content={
-
+ <>
New!
{" "}
Try our{" "}
-
+
Article Search
-
+
{" "}
to discover online journals, books, and more from home with your
library card.
-
+ >
}
/>
)
diff --git a/src/components/Layout/Layout.tsx b/src/components/Layout/Layout.tsx
index 6b2c8b9e8..06dc44e35 100644
--- a/src/components/Layout/Layout.tsx
+++ b/src/components/Layout/Layout.tsx
@@ -80,24 +80,23 @@ const Layout = ({
/>
{showSearch && }
- {showNotification && bannerNotification && (
-
-
+
+
+ {showNotification && bannerNotification && (
-
- )}
+ )}
+
>
)
}