File tree Expand file tree Collapse file tree 1 file changed +10
-12
lines changed
src/packages/frontend/chat Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {
17
17
useRedux ,
18
18
useTypedRedux ,
19
19
} from "@cocalc/frontend/app-framework" ;
20
- import { Icon , VisibleMDLG } from "@cocalc/frontend/components" ;
20
+ import { Icon } from "@cocalc/frontend/components" ;
21
21
import useVirtuosoScrollHook from "@cocalc/frontend/components/virtuoso-scroll-hook" ;
22
22
import { HashtagBar } from "@cocalc/frontend/editors/task-editor/hashtag-bar" ;
23
23
import {
@@ -147,17 +147,15 @@ export function ChatLog({
147
147
return (
148
148
< >
149
149
{ visibleHashtags . size > 0 && (
150
- < VisibleMDLG >
151
- < HashtagBar
152
- actions = { {
153
- set_hashtag_state : ( tag , state ) => {
154
- actions . setHashtagState ( tag , state ) ;
155
- } ,
156
- } }
157
- selected_hashtags = { selectedHashtags0 }
158
- hashtags = { visibleHashtags }
159
- />
160
- </ VisibleMDLG >
150
+ < HashtagBar
151
+ actions = { {
152
+ set_hashtag_state : ( tag , state ) => {
153
+ actions . setHashtagState ( tag , state ) ;
154
+ } ,
155
+ } }
156
+ selected_hashtags = { selectedHashtags0 }
157
+ hashtags = { visibleHashtags }
158
+ />
161
159
) }
162
160
{ messages != null && (
163
161
< NotShowing
You can’t perform that action at this time.
0 commit comments