mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 18:29:57 -05:00
fix: Correct grammar in bot invite screen (#237)
This commit is contained in:
parent
856bbb598c
commit
aa13e9d96f
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ export default function InviteBot() {
|
||||||
<ComboBox
|
<ComboBox
|
||||||
value={server}
|
value={server}
|
||||||
onChange={(e) => setServer(e.currentTarget.value)}>
|
onChange={(e) => setServer(e.currentTarget.value)}>
|
||||||
<option value="none">un selected</option>
|
<option value="none">Select a server</option>
|
||||||
{[...client.servers.values()].map((server) => (
|
{[...client.servers.values()].map((server) => (
|
||||||
<option value={server._id} key={server._id}>
|
<option value={server._id} key={server._id}>
|
||||||
{server.name}
|
{server.name}
|
||||||
|
@ -60,7 +60,7 @@ export default function InviteBot() {
|
||||||
<ComboBox
|
<ComboBox
|
||||||
value={group}
|
value={group}
|
||||||
onChange={(e) => setGroup(e.currentTarget.value)}>
|
onChange={(e) => setGroup(e.currentTarget.value)}>
|
||||||
<option value="none">un selected</option>
|
<option value="none">Select a group</option>
|
||||||
{[...client.channels.values()]
|
{[...client.channels.values()]
|
||||||
.filter((x) => x.channel_type === "Group")
|
.filter((x) => x.channel_type === "Group")
|
||||||
.map((channel) => (
|
.map((channel) => (
|
||||||
|
|
Loading…
Reference in a new issue