Changed the 'type' for WPA/WPA2/WPA3 to just 'WPA'

This commit is contained in:
Nat Fletcher
2025-09-25 02:28:57 -05:00
parent 234fc8090b
commit 20b5c322ad
2 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ const initialValues: InitialValuesType = {
// WiFi
wifiSsid: '',
wifiPassword: '',
wifiEncryption: 'WPA/WPA2',
wifiEncryption: 'WPA',
// vCard
vCardName: '',
@@ -353,7 +353,7 @@ export default function QRCodeGenerator({ title }: ToolComponentProps) {
label="Encryption Type"
margin="normal"
>
<MenuItem value="WPA/WPA2">WPA/WPA2</MenuItem>
<MenuItem value="WPA">WPA</MenuItem>
<MenuItem value="WEP">WEP</MenuItem>
<MenuItem value="None">None</MenuItem>
</TextField>

View File

@@ -7,7 +7,7 @@ export type QRCodeType =
| 'WiFi'
| 'vCard';
export type WifiEncryptionType = 'WPA/WPA2' | 'WEP' | 'None';
export type WifiEncryptionType = 'WPA' | 'WEP' | 'None';
export interface InitialValuesType {
qrCodeType: QRCodeType;