@@ -23,7 +23,6 @@ import isCollapsedCommunity from '@appManagers/utils/communities/isCollapsedComm
2323import styles from './archiveDialog.module.scss' ;
2424import Badge from './badge' ;
2525import { IconTsx } from './iconTsx' ;
26- import ripple from './ripple' ;
2726import { createStoriesStore , StoriesContextValue } from './stories/store' ;
2827import { createStoriesViewerWithProvider } from './stories/viewer' ;
2928
@@ -46,7 +45,7 @@ export const archiveDialogTagName = 'archive-dialog';
4645const ArchiveDialog = defineSolidElement ( {
4746 name : archiveDialogTagName ,
4847 component : ( props : PassedProps < ArchiveDialogProps > , _ , controls : Controls ) => {
49- props . element . classList . add ( 'row' , 'no-wrap' , 'row-with-padding' , 'row-clickable' , 'hover-effect' , 'rp' , ' chatlist-chat', 'chatlist-chat-bigger' , 'row-big' ) ;
48+ props . element . classList . add ( 'row' , 'no-wrap' , 'row-with-padding' , 'row-clickable' , 'hover-effect' , 'chatlist-chat' , 'chatlist-chat-bigger' , 'row-big' ) ;
5049
5150 const [ openStoriesTarget , setOpenStoriesTarget ] = createSignal < HTMLElement > ( ) ;
5251
@@ -58,8 +57,6 @@ const ArchiveDialog = defineSolidElement({
5857 // the shared worker thread to compute whether it is unread or not
5958 const [ cachedDialogUnread , setCachedDialogUnread ] = createStore < Record < PeerId , boolean > > ( { } ) ;
6059
61- ripple ( props . element , ( ) => true ) ;
62-
6360 controls . openStory = ( ) => {
6461 props . state . openArchiveStories ( openStoriesTarget ( ) ) ;
6562 } ;
0 commit comments