Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
j4w3ny committed Jun 20, 2022
1 parent 330b5d0 commit 7d6e4cc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
ButtonGroup,
Tooltip,
} from '@mui/material';
import { useState, useEffect, useCallback, useReducer } from 'react';
import { useState, useEffect, useCallback } from 'react';
import { invoke, clipboard } from '@tauri-apps/api';
import { ToastContainer, toast, Slide } from 'react-toastify';
import { useForm, SubmitHandler } from 'react-hook-form';
Expand Down Expand Up @@ -231,8 +231,7 @@ const Home = () => {
return (
<List>
{scoreLinkInfos
.map((val, idx, arr) => {
// console.log(val, arr);
.map((val, idx) => {
return (
<div id={val.title} key={val.title}>
<LinkListItem link={val} index={idx} />
Expand Down

0 comments on commit 7d6e4cc

Please sign in to comment.