fix: grammar, update command for dev mode

This commit is contained in:
Ed L
2022-09-10 20:22:43 +01:00
committed by Paul Makles
parent 709457e1a6
commit 6f521278ce
4 changed files with 24 additions and 20 deletions

View File

@@ -165,18 +165,22 @@ export function Native() {
title="I understand there's no going back."
description={
<>
This will change the app to the 'dev' branch,
instead loading the app from a local server on
your machine.
{
"This will change the app to the 'dev' branch, instead loading the app from a local server on your machine."
}
<br />
<b>
Without a server running,{" "}
{"Without a server running, "}
<span style={{ color: "var(--error)" }}>
the app will not load!
{"the app will not load!"}
</span>
</b>
<br />
<code>yarn dev --port 3001</code>
{
"Make sure the app is available on port 3001 by running "
}
<code>{"yarn dev --port 3001 --host"}</code>
{"."}
</>
}
/>

View File

@@ -96,14 +96,14 @@ export const Overview = observer(({ server }: Props) => {
<div className={styles.markdown}>
<Markdown size="24" />
<h5>
Descriptions support Markdown formatting,{" "}
{"Server descriptions support Markdown formatting. "}
<a
href="https://developers.revolt.chat/markdown"
href="https://support.revolt.chat/kb/interface/messages/formatting-your-messages"
target="_blank"
rel="noreferrer">
learn more here
{"Learn more here"}
</a>
.
{"."}
</h5>
</div>
<hr />