File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
packages/compass-generative-ai/src/components Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,9 @@ const AIOptInModal: React.FunctionComponent<OptInModalProps> = ({
103103export default connect (
104104 ( state : AtlasOptInState ) => {
105105 return {
106+ // @ts -expect-error reducers were combined so these methods are nested one layer lower
106107 isOptInModalVisible : state . optIn . isModalOpen ,
108+ // @ts -expect-error reducers were combined so these methods are nested one layer lower
107109 isOptInInProgress : state . optIn . state === 'in-progress' ,
108110 } ;
109111 } ,
Original file line number Diff line number Diff line change @@ -102,7 +102,9 @@ const AISignInModal: React.FunctionComponent<SignInModalProps> = ({
102102export default connect (
103103 ( state : AtlasSignInState ) => {
104104 return {
105+ // @ts -expect-error reducers were combined so these methods are nested one layer lower
105106 isSignInModalVisible : state . signIn . isModalOpen ,
107+ // @ts -expect-error reducers were combined so these methods are nested one layer lower
106108 isSignInInProgress : state . signIn . state === 'in-progress' ,
107109 } ;
108110 } ,
You can’t perform that action at this time.
0 commit comments