mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -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
|
||||
value={server}
|
||||
onChange={(e) => setServer(e.currentTarget.value)}>
|
||||
<option value="none">un selected</option>
|
||||
<option value="none">Select a server</option>
|
||||
{[...client.servers.values()].map((server) => (
|
||||
<option value={server._id} key={server._id}>
|
||||
{server.name}
|
||||
|
@ -60,7 +60,7 @@ export default function InviteBot() {
|
|||
<ComboBox
|
||||
value={group}
|
||||
onChange={(e) => setGroup(e.currentTarget.value)}>
|
||||
<option value="none">un selected</option>
|
||||
<option value="none">Select a group</option>
|
||||
{[...client.channels.values()]
|
||||
.filter((x) => x.channel_type === "Group")
|
||||
.map((channel) => (
|
||||
|
|
Loading…
Reference in a new issue