summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-03 08:18:46 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-30 09:51:49 +0200
commitae40996e96ecf64a8e07901f5df87659145228ae (patch)
tree980053639fc2e2800edb912f9b87713c29213092
parent27b26dab3374af07780543eb9b652111c2006ec5 (diff)
downloadmullvadvpn-ae40996e96ecf64a8e07901f5df87659145228ae.tar.xz
mullvadvpn-ae40996e96ecf64a8e07901f5df87659145228ae.zip
Export SettingsTextInputProps
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/cell/SettingsTextInput.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/cell/SettingsTextInput.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/cell/SettingsTextInput.tsx
index 45ced44d66..22b55c3a49 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/cell/SettingsTextInput.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/cell/SettingsTextInput.tsx
@@ -21,7 +21,7 @@ const StyledInput = styled.input(smallNormalText, {
},
});
-interface SettingsTextInputProps extends InputProps<'text'> {
+export interface SettingsTextInputProps extends InputProps<'text'> {
defaultValue?: string;
}