Skip to content

Commit

Permalink
slowly fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanTom committed Sep 8, 2023
1 parent 90b947e commit 22ba947
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- name: Get JSON secret
run: |
# Retrieve the JSON secret
echo "${{ secrets.SERVICE_ACCOUNT }}"
echo "${{ secrets.SERVICE_ACCOUNT }}" > "./frontend/serviceAccount.json"
if ! jq empty "./frontend/serviceAccount.json"; then
Expand Down
5 changes: 2 additions & 3 deletions frontend/src/components/BookApp.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/** eslint-disable */
import CalendarIcon from '@/assets/calendar.svg'
import CameraIcon from '@/assets/calendar.svg'
import ClockIcon from '@/assets/clock.svg'
Expand Down Expand Up @@ -36,8 +35,8 @@ const Dropdown = (props: DropdownProp) => {
</label>

<ul tabIndex={0} className="dropdown-content menu p-2 shadow bg-base-100 rounded-box w-64">
<li><a><div className="">Item 1</div></a></li>
<li><a>Item 2</a></li>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
)
Expand Down

0 comments on commit 22ba947

Please sign in to comment.