diff options
| author | Oliver <oliver@mohlin.dev> | 2025-08-27 10:30:07 +0200 |
|---|---|---|
| committer | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-09-22 12:35:43 +0200 |
| commit | c50cc6849a856c3b352755bc38b0b187bb7dce30 (patch) | |
| tree | 08b8e3b9b5f72df3e91e6ce206b673574343666d | |
| parent | c52e39f1c38816667fd0949cf57354fb9a358761 (diff) | |
| download | mullvadvpn-c50cc6849a856c3b352755bc38b0b187bb7dce30.tar.xz mullvadvpn-c50cc6849a856c3b352755bc38b0b187bb7dce30.zip | |
Update ListItem props
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/renderer/lib/components/list-item/ListItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/lib/components/list-item/ListItem.tsx b/desktop/packages/mullvad-vpn/src/renderer/lib/components/list-item/ListItem.tsx index 1371b9848e..67898736b5 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/lib/components/list-item/ListItem.tsx +++ b/desktop/packages/mullvad-vpn/src/renderer/lib/components/list-item/ListItem.tsx @@ -21,7 +21,7 @@ export type ListItemProps = { disabled?: boolean; animation?: ListItemAnimation; children: React.ReactNode; -} & React.HtmlHTMLAttributes<HTMLDivElement>; +} & React.ComponentPropsWithRef<'div'>; const ListItem = ({ level = 0, disabled, animation, children, ...props }: ListItemProps) => { return ( |
