Skip to content

Commit

Permalink
chore: fix ci type error problem
Browse files Browse the repository at this point in the history
  • Loading branch information
moonrailgun committed Aug 4, 2023
1 parent 9fb0246 commit ccd0f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/shared/contexts/ConverseMessageContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface ConverseMessageContextProps {
isLoadingMore: boolean;
hasMoreMessage: boolean;
fetchMoreMessage: () => Promise<void>;
sendMessage: (payload: SendMessagePayload) => Promise<void>;
sendMessage: (payload: SendMessagePayload) => void | Promise<void>;
}

const {
Expand Down

0 comments on commit ccd0f9b

Please sign in to comment.