summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/views/main/components/connection-panel/components/connect-button/ConnectButton.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/views/main/components/connection-panel/components/connect-button/ConnectButton.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/views/main/components/connection-panel/components/connect-button/ConnectButton.tsx
index fd2abafa2f..2a41ee59fb 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/views/main/components/connection-panel/components/connect-button/ConnectButton.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/views/main/components/connection-panel/components/connect-button/ConnectButton.tsx
@@ -3,9 +3,9 @@ import { useCallback } from 'react';
import { messages } from '../../../../../../../../shared/gettext';
import log from '../../../../../../../../shared/logging';
import { useAppContext } from '../../../../../../../context';
-import { Button } from '../../../../../../../lib/components';
+import { Button, ButtonProps } from '../../../../../../../lib/components';
-export function ConnectButton(props: Partial<Parameters<typeof Button>[0]>) {
+export function ConnectButton(props: ButtonProps) {
const { connectTunnel } = useAppContext();
const onConnect = useCallback(async () => {