Skip to content

Commit

Permalink
Fix Grammar in InternetPage.ts
Browse files Browse the repository at this point in the history
Fixed the grammar for the Internet page under the Admin Panel
  • Loading branch information
redtrillix authored and rejetto committed Nov 29, 2023
1 parent 875ed6c commit dc5578f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/src/InternetPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function InternetPage() {
setVerifyAgain(false)
}, [verifyAgain, nat, loading])
return h(Flex, { vert: true, gap: '2em', maxWidth: '40em' },
h(Alert, { severity: 'info' }, "This page helps you making your server work on the Internet"),
h(Alert, { severity: 'info' }, "This page makes sure your site is working correctly on the Internet"),
baseUrlBox(),
networkBox(),
httpsBox(),
Expand Down Expand Up @@ -273,4 +273,4 @@ function Device({ name, icon, color, ip, below }: any) {
h(Box, { fontSize: 'smaller', whiteSpace: 'pre-wrap' }, wantArray(ip).join('\n') || "unknown"),
below,
)
}
}

0 comments on commit dc5578f

Please sign in to comment.