File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
modules/Content/components Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -115,10 +115,6 @@ body {
115115 font-family : var (--font-poppins ), Arial, Helvetica, sans-serif;
116116}
117117
118- .disqus-container * : not (: first-of-type ), # disqus_thread * : not (: first-of-type ) {
119- display : none !important ;
120- }
121-
122118@import "./custom-utilities" ;
123119@import "./lazy-image" ;
124120@import "./katex" ;
Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ function ContentDisqus(props: Props) {
2828 const timer = setTimeout ( ( ) => {
2929 setDisqusKey ( `${ language } -${ appTheme } ` ) ;
3030 } , 1000 ) ;
31- return ( ) => clearTimeout ( timer ) ;
31+ return ( ) => {
32+ setDisqusKey ( '' ) ;
33+ clearTimeout ( timer ) ;
34+ } ;
3235 } , [ language , appTheme ] ) ;
3336
3437 return (
You can’t perform that action at this time.
0 commit comments