diff --git a/app/client/components/create-volume-form.tsx b/app/client/components/create-volume-form.tsx index 7a1c06f..b5788c4 100644 --- a/app/client/components/create-volume-form.tsx +++ b/app/client/components/create-volume-form.tsx @@ -40,7 +40,6 @@ const defaultValuesForType = { mariadb: { backend: "mariadb" as const, port: 3306 }, mysql: { backend: "mysql" as const, port: 3306 }, postgres: { backend: "postgres" as const, port: 5432, dumpFormat: "custom" as const }, - sqlite: { backend: "sqlite" as const, path: "/" }, }; export const CreateVolumeForm = ({ onSubmit, mode = "create", initialValues, formId, loading, className }: Props) => { @@ -139,7 +138,6 @@ export const CreateVolumeForm = ({ onSubmit, mode = "create", initialValues, for MariaDB MySQL PostgreSQL - SQLite Choose the storage backend for this volume. @@ -798,38 +796,7 @@ export const CreateVolumeForm = ({ onSubmit, mode = "create", initialValues, for )} - {watchedBackend === "sqlite" && ( - { - return ( - - Database File Path - - {field.value ? ( -
-
-
Selected database:
-
{field.value}
-
- -
- ) : ( - field.onChange(path)} selectedPath={field.value} /> - )} -
- Path to the SQLite database file (.db, .sqlite, .sqlite3). - -
- ); - }} - /> - )} - - {watchedBackend !== "directory" && watchedBackend !== "sqlite" && ( + {watchedBackend !== "directory" && (