diff --git a/apps/connect/src/components/atoms/NewsBar.tsx b/apps/connect/src/components/atoms/NewsBar.tsx index 57182b336..e4dc91245 100644 --- a/apps/connect/src/components/atoms/NewsBar.tsx +++ b/apps/connect/src/components/atoms/NewsBar.tsx @@ -14,7 +14,7 @@ export default function NewsBar({ messages }: NewsBarProps) { message && ( {message.content} - + {message.button && ()} ) ); diff --git a/apps/connect/src/configs/messages.tsx b/apps/connect/src/configs/messages.tsx index 815856d25..5f3bda912 100644 --- a/apps/connect/src/configs/messages.tsx +++ b/apps/connect/src/configs/messages.tsx @@ -2,7 +2,7 @@ import Typography from "@mui/material/Typography"; export type Message = { background: string; - button: { + button?: { href: string; label?: string; background: string; @@ -70,6 +70,30 @@ const messages: Record = { ), start: new Date(2023, 9, 20), // any date in the past would be fine + ends: new Date(2023, 10, 6), + }, + solana: { + background: + "yellow;", + content: ( + <> + + There are currently delays in relaying to Solana. Please use manual relaying if you need your transfer completed quickly. + + + ), + start: new Date(2023, 11, 17), // any date in the past would be fine }, };