mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-06 08:38:37 +00:00
fix: Correct grammar in bot invite screen (#237)
This commit is contained in:
@@ -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) => (
|
||||||
|
|||||||
Reference in New Issue
Block a user