File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,14 @@ export const Console: React.FC<Props> = () => {
4242 }
4343 } ) ;
4444
45- chrome . storage . local . get ( 'scrapboxIndentLiningColor ' , ( result ) => {
46- const scrapboxIndentLiningColor = result . scrapboxIndentLiningColor ;
45+ chrome . storage . local . get ( 'scrapboxIndentLineColor ' , ( result ) => {
46+ const scrapboxIndentLineColor = result . scrapboxIndentLineColor ;
4747
48- if ( ! scrapboxIndentLiningColor ) {
49- chrome . storage . local . set ( { scrapboxIndentLiningColor : '#dcdcdc' } ) ;
48+ if ( ! scrapboxIndentLineColor ) {
49+ chrome . storage . local . set ( { scrapboxIndentLineColor : '#dcdcdc' } ) ;
5050 setIndentLiningColor ( '#dcdcdc' ) ;
5151 } else {
52- setIndentLiningColor ( scrapboxIndentLiningColor ) ;
52+ setIndentLiningColor ( scrapboxIndentLineColor ) ;
5353 }
5454 } ) ;
5555 } , [ ] ) ;
You can’t perform that action at this time.
0 commit comments