File tree Expand file tree Collapse file tree 3 files changed +0
-8
lines changed
features/onboarding/components/steps Expand file tree Collapse file tree 3 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 11const acceptedTypes = [ 'TOKEN_RECEIVED' , 'ERROR_RECEIVED' ]
22window . addEventListener ( 'message' , ( event ) => {
3- console . log ( 'Received message from content script:' , event . data )
43 if ( acceptedTypes . includes ( event . data . type ) ) {
54 // Forward to content scripte
65 window . postMessage ( event . data , '*' )
Original file line number Diff line number Diff line change @@ -29,11 +29,6 @@ export const SourcesTab = ({
2929 options = { sources }
3030 defaultValues = { tabsData . sources }
3131 onChange = { ( _ , selectedChips ) => {
32- console . log (
33- 'sources' ,
34- selectedChips . map ( ( chip ) => chip . value )
35- )
36-
3732 setTabsData ( { ...tabsData , sources : selectedChips . map ( ( chip ) => chip . value ) } )
3833 } }
3934 />
Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ const defaultStorage: StateStorage = {
7979
8080 return JSON . stringify ( { state : newState , version } )
8181 } catch ( e ) {
82- console . log ( 'Error getting item' , e )
8382 return null
8483 }
8584 } ,
@@ -101,7 +100,6 @@ const defaultStorage: StateStorage = {
101100 const newValue = JSON . stringify ( { state : newState , version } )
102101 window . localStorage . setItem ( name , newValue )
103102 } catch ( e ) {
104- console . log ( 'Prefs, SetItem' , e )
105103 window . localStorage . setItem ( name , '' )
106104 }
107105 } ,
You can’t perform that action at this time.
0 commit comments