mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-09 01:26:24 +01:00
Check if there are shortcuts too before displaying Columns
This commit is contained in:
parent
6c63fb14b4
commit
58208a417c
1 changed files with 2 additions and 1 deletions
|
@ -28,7 +28,8 @@ function Home() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{snapStates.settings.shortcutsColumnsMode ? (
|
{snapStates.settings.shortcutsColumnsMode &&
|
||||||
|
!!snapStates.shortcuts?.length ? (
|
||||||
<Columns />
|
<Columns />
|
||||||
) : (
|
) : (
|
||||||
<Following
|
<Following
|
||||||
|
|
Loading…
Reference in a new issue