diff options
Diffstat (limited to 'src/modules/popdowns/index.tsx')
| -rw-r--r-- | src/modules/popdowns/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/popdowns/index.tsx b/src/modules/popdowns/index.tsx index 9ee9f77..c4f4664 100644 --- a/src/modules/popdowns/index.tsx +++ b/src/modules/popdowns/index.tsx @@ -2,6 +2,7 @@ import BluetoothDevices from "./bluetoothdevices"; import Media from "./media"; import Networks from "./networks"; import Notifications from "./notifications"; +import SideRight from "./sideright"; import Updates from "./updates"; export default () => { @@ -10,6 +11,7 @@ export default () => { <BluetoothDevices />; <Networks />; <Media />; + <SideRight />; return null; }; |