diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3957a13..e026aa6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,13 +10,13 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout the repository - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: - node-version: '14' + node-version: "20.11.1" - name: Install dependencies run: npm install diff --git a/src/screens/OnboardingUsername.js b/src/screens/OnboardingUsername.js index 1ce1d97..fa21cc7 100644 --- a/src/screens/OnboardingUsername.js +++ b/src/screens/OnboardingUsername.js @@ -7,7 +7,7 @@ import VStack from "../components/VStack"; const OnboardingUsername = () => { const [username, setUsername] = useState(); - const [error, setError] = useState(''); + //const [error, setError] = useState(''); const handleChange = (event) => { setUsername(event.target.value);