diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 53f031c6c56..11bf44f3af8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,11 +50,11 @@ You can execute the following commands in the following directories: - The projects root directory: all tests in the project are executed ```sh -# Run unit and integration tests once -pnpm run test -- --passWithNoTests +# Run all once +pnpm test -# Rerun unit and integration tests on file changes -pnpm run test:watch -- --passWithNoTests +# Rerun tests on file changes +pnpm test:watch ``` ### Developing Against Your Local ZITADEL Instance diff --git a/apps/login/ui/Input.tsx b/apps/login/ui/Input.tsx index 55887fbdb1a..3c7de28b1f1 100644 --- a/apps/login/ui/Input.tsx +++ b/apps/login/ui/Input.tsx @@ -8,7 +8,6 @@ import React, { InputHTMLAttributes, ReactNode, } from "react"; -import { v4 as uuidv4 } from "uuid"; export type TextInputProps = DetailedHTMLProps< InputHTMLAttributes, @@ -55,7 +54,6 @@ export const TextInput = forwardRef( }, ref ) => { - const id = uuidv4(); return (