docs: Fix syntax errors and missing imports with auth form builder. (#640)

* Fix syntax errors and missing imports with auth form builder.

* chore:lint

---------

Co-authored-by: Bereket Engida <bekacru@gmail.com>
This commit is contained in:
Salvatore Noto
2024-11-24 01:35:29 -05:00
committed by GitHub
parent bdfc0457ec
commit 8a4076bdd3
3 changed files with 195 additions and 192 deletions

View File

@@ -4,7 +4,7 @@ import { CodeEditor } from "./code-editor";
import { useAtom } from "jotai";
import { optionsAtom } from "../store";
import { js_beautify } from "js-beautify";
import { singUpString } from "../sign-up";
import { signUpString } from "../sign-up";
import { signInString } from "../sign-in";
export default function CodeTabs() {
@@ -102,7 +102,7 @@ ${
initialFiles.push({
id: "4",
name: "sign-up.tsx",
content: singUpString,
content: signUpString,
});
}