Skip to content

Commit

Permalink
added clear cache to yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Blockchain-Country committed Oct 30, 2024
1 parent af820bd commit 146bb40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Clear npm cache
run: npm cache clean --force

- name: Cache node_modules
uses: actions/cache@v3
with:
Expand Down
5 changes: 2 additions & 3 deletions src/components/modals/SearchBookModal.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
// BookSearchModal.js
import React from 'react'
import { useDispatch, useSelector } from 'react-redux'
import './SearchBookModal.css'
import { addBook } from '../../redux/slices/booksSlice'
import { addBook, selectBook } from '../../redux/slices/booksSlice'
import createBook from '../../utils/createBook'
import { selectBook } from '../../redux/slices/booksSlice'
import './SearchBookModal.css'

const BookSearchModal = ({ isOpen, onClose, booksFoundList }) => {
const dispatch = useDispatch()
Expand Down

0 comments on commit 146bb40

Please sign in to comment.