Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianscatularo committed Dec 18, 2023
1 parent c73c1e0 commit d520877
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/connect/src/components/atoms/NewsBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function NewsBar({ messages }: NewsBarProps) {
message && (
<Bar background={message.background}>
{message.content}
{message.button && (<NewBarButton button={message.button} />)}
{message.button && <NewBarButton button={message.button} />}
</Bar>
)
);
Expand Down
6 changes: 3 additions & 3 deletions apps/connect/src/configs/messages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ const messages: Record<string, Message> = {
ends: new Date(2023, 10, 6),
},
solana: {
background:
"yellow;",
background: "yellow;",
content: (
<>
<Typography
Expand All @@ -89,7 +88,8 @@ const messages: Record<string, Message> = {
wordWrap: "break-word",
}}
>
There are currently delays in relaying to Solana. Please use manual relaying if you need your transfer completed quickly.
There are currently delays in relaying to Solana. Please use manual
relaying if you need your transfer completed quickly.
</Typography>
</>
),
Expand Down

0 comments on commit d520877

Please sign in to comment.