Compare commits

..

2 Commits

Author SHA1 Message Date
fe64e33c1d Don't display options on website yet 2025-07-27 01:00:28 -04:00
edc392fba0 Add server configurator block option 2025-07-27 00:54:42 -04:00
2 changed files with 4 additions and 2 deletions

View File

@@ -286,8 +286,7 @@ export default function () {
</FormLabel>
<Input id="usernames" placeholder="builderman" />
</FormControl>
<br />
<FormControl isRequired>
<FormControl isRequired display="none">
<FormLabel htmlFor="submissionType">Type of Report</FormLabel>
<RadioGroup
id="submissionType"

View File

@@ -155,6 +155,9 @@ export default function (props: ReportCardProps & { port?: MessagePort }) {
<Radio key={2} value="2">
Ban
</Radio>
<Radio key={3} value="3" display="none">
Disallow Server Configurator
</Radio>
</VStack>
</RadioGroup>,
);