Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoff Kendal committed Jan 31, 2024
1 parent 0d14024 commit c44e330
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- name: Install dependencies
working-directory: frontend
run: pwd && npm ci
run: npm install

- name: Build React app
working-directory: frontend
Expand Down
1 change: 1 addition & 0 deletions frontend/src/TicketChild.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const TicketChild = ({ groupCode }) => {

useEffect(() => {
fetchParentData();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [groupCode]);


Expand Down
1 change: 1 addition & 0 deletions frontend/src/TicketVehicle.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ const TicketVehicle = ({ groupCode }) => {

useEffect(() => {
fetchDriverData();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [groupCode]);


Expand Down
1 change: 1 addition & 0 deletions frontend/src/UserView.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ const UserView = ({ groupCode }) => {

useEffect(() => {
fetchData();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [groupCode]);

const handleRemoveTicket = async (ticketId) => {
Expand Down

0 comments on commit c44e330

Please sign in to comment.