Skip to content

Commit

Permalink
style: SoundWave ref lint 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ukkodeveloper committed Oct 19, 2023
1 parent 63a8bcc commit f2baad4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/features/killingParts/components/SoundWave.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ interface SoundWaveProps {
length: number;
progressWidth: number;
}
// eslint-disable-next-line react/display-name

const SoundWave = forwardRef<HTMLDivElement, SoundWaveProps>(
({ length, progressWidth }, boxRef) => {
const stretchWaveHeight =
Expand Down Expand Up @@ -34,6 +34,7 @@ const SoundWave = forwardRef<HTMLDivElement, SoundWaveProps>(
}
);

SoundWave.displayName = 'SoundWave';
export default SoundWave;

const LongBar = styled.div`
Expand Down

0 comments on commit f2baad4

Please sign in to comment.