fix: another testing remnant from the past

This commit is contained in:
2023-08-24 14:12:08 +02:00
parent cc615f91fa
commit ede5e73f0b

View File

@@ -49,7 +49,7 @@ export default function InitModal() {
const [templates, setTemplates] = React.useState<Array<TemplateList>>([]);
React.useEffect(() => {
fetch('https://raw.githubusercontent.com/sern-handler/create-bot/main/metadata/templateChoices.jso')
fetch('https://raw.githubusercontent.com/sern-handler/create-bot/main/metadata/templateChoices.json')
.then((res) => res.json())
.then((data) => {
setTemplates(data as TemplateList[]);