Skip to content

Commit

Permalink
Fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Benz committed Apr 26, 2024
1 parent e4cf493 commit a9e3233
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/VideoPlayers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ interface VideoPlayerProps {
setIsPlaying: ActionCreatorWithPayload<boolean, string>,
setPreviewTriggered: ActionCreatorWithPayload<boolean, string>,
setClickTriggered: ActionCreatorWithPayload<boolean, string>,
setJumpTriggered: ActionCreatorWithPayload<any, string>,
setJumpTriggered: ActionCreatorWithPayload<boolean, string>,
setCurrentlyAt: ActionCreatorWithPayload<number, string> | AsyncThunk<void, number, AsyncThunkConfig>,
setAspectRatio: ActionCreatorWithPayload<{ dataKey: number; } & { width: number, height: number; }, string>,
}
Expand Down
4 changes: 2 additions & 2 deletions src/redux/videoSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const videoSlice = createSlice({
setClickTriggered: (state, action: PayloadAction<video["clickTriggered"]>) => {
state.clickTriggered = action.payload;
},
setJumpTriggered: (state, action) => {
setJumpTriggered: (state, action: PayloadAction<video["jumpTriggered"]>) => {
state.jumpTriggered = action.payload;
},
setCurrentlyAt: (state, action: PayloadAction<video["currentlyAt"]>) => {
Expand Down Expand Up @@ -480,7 +480,7 @@ export const {
setClickTriggered,
setJumpTriggered,
jumpToPreviousSegment,
jumpToNextSegment
jumpToNextSegment,
} = videoSlice.actions;

export const selectVideos = createSelector(
Expand Down

0 comments on commit a9e3233

Please sign in to comment.