Skip to content

Commit

Permalink
#127 Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
kento committed Jul 1, 2023
1 parent 35cb4c9 commit af6bb49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/components/ac.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ const Ac = () => {
<div>
{data && (
<ul>
{data.map((d) => {
{/* @ts-ignore */}
{data.map((d: any) => {
console.log(d)
return (
<>
Expand Down

0 comments on commit af6bb49

Please sign in to comment.