Skip to content

Commit

Permalink
chore(app): fix eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao committed Oct 28, 2024
1 parent f518f02 commit b909996
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ const useSongSelector = ({ onClose, week }: SongSelectorProps) => {
const load = () => {
if (song.length > 0 || speaker.length === 0) return onClose();

const speakerData = speakers.find;
const speakerData = speakers.find(
(record) => record.person_uid === speaker
);

console.log(speakerData);
};

load();
Expand Down

0 comments on commit b909996

Please sign in to comment.