diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/features/drawer/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/drawer/index.js b/app/javascript/flavours/glitch/features/drawer/index.js index 226d342fb..eac0370c2 100644 --- a/app/javascript/flavours/glitch/features/drawer/index.js +++ b/app/javascript/flavours/glitch/features/drawer/index.js @@ -110,7 +110,7 @@ class Drawer extends React.Component { value={searchValue} /> } <div className='contents'> - <DrawerAccount account={account} /> + {!isSearchPage && <DrawerAccount account={account} />} {!isSearchPage && <Composer />} {multiColumn && <button className='mastodon' onClick={onClickElefriend} />} <DrawerResults |