Fix command to create new app for the app store (#7322)

This commit is contained in:
Miguel Nieto 2023-02-23 23:25:00 -05:00 committed by GitHub
parent 9e08cf88f4
commit 6440d3da6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,5 +3,5 @@ import React from "react";
import { AppForm } from "../components/AppCreateUpdateForm";
export default function Create(props: Omit<React.ComponentProps<typeof AppForm>, "action">) {
return <AppForm action="create-template" {...props} />;
return <AppForm action="create" {...props} />;
}