Skip to content

Commit

Permalink
proper classnames to display stop recording icon
Browse files Browse the repository at this point in the history
  • Loading branch information
interim17 committed Nov 6, 2024
1 parent 3dece87 commit 0f46e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RecordMoviesComponent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const RecordMovieComponent = (props: RecordMovieComponentProps) => {
if (!isRecording) {
return startRecordingIcon;
} else if (isHovering) {
return "stop-record-icon";
return classNames("icon-moon", "stop-record-icon");
} else return activeRecordingIcon;
};

Expand Down

0 comments on commit 0f46e1c

Please sign in to comment.