Skip to content

Commit

Permalink
update deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
wbglaeser committed Jun 6, 2024
1 parent 823f4f5 commit 1420df2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/screens/OnboardingUsername.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1420df2

Please sign in to comment.