diff --git a/external/lang b/external/lang
index db62af5c..c8284d49 160000
--- a/external/lang
+++ b/external/lang
@@ -1 +1 @@
-Subproject commit db62af5cee441c5d78bf4fc18c40f4aeffafc97d
+Subproject commit c8284d49b09b108e42fac4a7bdeaf3a447757b61
diff --git a/src/components/common/user/UserCheckbox.tsx b/src/components/common/user/UserCheckbox.tsx
index b80ca1c1..15ffce7d 100644
--- a/src/components/common/user/UserCheckbox.tsx
+++ b/src/components/common/user/UserCheckbox.tsx
@@ -1,6 +1,6 @@
import { User } from "revolt.js";
-import { Checkbox } from "@revoltchat/ui";
+import { Checkbox, Row, Column } from "@revoltchat/ui";
import UserIcon from "./UserIcon";
import { Username } from "./UserShort";
@@ -9,9 +9,16 @@ type UserProps = { value: boolean; onChange: (v: boolean) => void; user: User };
export default function UserCheckbox({ user, ...props }: UserProps) {
return (
-
-
-
-
+
+
+
+
+
+
+ }
+ />
);
}
diff --git a/src/context/intermediate/popovers/UserPicker.module.scss b/src/context/intermediate/popovers/UserPicker.module.scss
index 610de5a7..f0c1e9a5 100644
--- a/src/context/intermediate/popovers/UserPicker.module.scss
+++ b/src/context/intermediate/popovers/UserPicker.module.scss
@@ -1,20 +1,5 @@
.list {
- width: 400px;
max-width: 100%;
max-height: 360px;
overflow-y: scroll;
-
- > label {
- > span {
- align-items: flex-start !important;
- > span {
- display: flex;
- padding: 4px;
- flex-direction: row;
- gap: 10px;
- justify-content: flex-start;
- align-items: center;
- }
- }
- }
}