Adds a missing title to the new switch tile in credentials

This commit is contained in:
zontreck 2023-11-08 17:21:56 -07:00
parent 16c935d904
commit fe4f77d290

View file

@ -274,6 +274,9 @@ class CredentialsPrompt extends StatelessWidget {
),
SwitchListTile(
value: z2fa,
title: Text("Enable 2FA"),
subtitle: Text(
"This may or may not be broken... steamcmd is shit!"),
onChanged: (value) {
z2fa = value;
})