diff --git a/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx b/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx index 902dc0034..af95e5eea 100644 --- a/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx +++ b/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx @@ -138,8 +138,10 @@ function CreateNote({ label: name, })).toJS() as unknown as { value: string, label: string }[] - const changeChannel = ({ value, name }: { value: string; name: string }) => { - setChannel(value); + slackChannelsOptions.unshift({ value: null, label: 'Share to slack?' }) + + const changeChannel = ({ value, name }: { value: Record; name: string }) => { + setChannel(value.value); }; return ( @@ -210,7 +212,8 @@ function CreateNote({