Skip to content

Commit

Permalink
Change button captions
Browse files Browse the repository at this point in the history
  • Loading branch information
mike76-dev committed Apr 15, 2024
1 parent 67e501c commit 21e3a95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web/src/components/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const About = (props: AboutProps) => {
</ul>
<Button
icon={Back}
caption="back"
caption="home"
darkMode={props.darkMode}
onClick={() => {navigate(network === 'zen' ? '/zen' : '/')}}
/>
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/FAQ/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export const FAQ = (props: FAQProps) => {
))}
<Button
icon={Back}
caption="back"
caption="home"
darkMode={props.darkMode}
onClick={() => {navigate(network === 'zen' ? '/zen' : '/')}}
/>
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/HostDetails/HostDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export const HostDetails = (props: HostDetailsProps) => {
)}
<Button
icon={Back}
caption="back"
caption="home"
darkMode={props.darkMode}
onClick={() => {navigate(network === 'mainnet' ? '/' : '/zen/')}}
/>
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/Status/Status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const Status = (props: StatusProps) => {
}
<Button
icon={Back}
caption="back"
caption="home"
darkMode={props.darkMode}
onClick={() => {navigate(network === 'zen' ? '/zen' : '/')}}
/>
Expand Down

0 comments on commit 21e3a95

Please sign in to comment.