summaryrefslogtreecommitdiff
path: root/src/modules/popdowns/index.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-30 21:31:19 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-30 21:31:19 +1100
commitad22dbdfebbb0def2ec2d8e2c91469e9a9e4fdf7 (patch)
tree826e715ae0aa7d4c5bcd29d76421a211b920dca1 /src/modules/popdowns/index.tsx
parentsideright: fix assertion row != -1 (diff)
downloadcaelestia-shell-ad22dbdfebbb0def2ec2d8e2c91469e9a9e4fdf7.tar.gz
caelestia-shell-ad22dbdfebbb0def2ec2d8e2c91469e9a9e4fdf7.tar.bz2
caelestia-shell-ad22dbdfebbb0def2ec2d8e2c91469e9a9e4fdf7.zip
sideleft: create popdown window
Diffstat (limited to 'src/modules/popdowns/index.tsx')
-rw-r--r--src/modules/popdowns/index.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/popdowns/index.tsx b/src/modules/popdowns/index.tsx
index c4f4664..fb9abf7 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 SideLeft from "./sideleft";
import SideRight from "./sideright";
import Updates from "./updates";
@@ -12,6 +13,7 @@ export default () => {
<Networks />;
<Media />;
<SideRight />;
+ <SideLeft />;
return null;
};