mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-23 09:16:54 +00:00
fix: Remove breaking installation changes
This commit is contained in:
parent
e0b32404be
commit
b5133aa2a6
|
@ -323,6 +323,7 @@ class ServerInstallationRepository {
|
|||
},
|
||||
cancelButtonOnPressed: onCancel,
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
saveServerDetails(createServerResult.data!);
|
||||
|
|
|
@ -48,7 +48,7 @@ abstract class ServerInstallationState extends Equatable {
|
|||
|
||||
bool get isFullyInitilized => _fulfilementList.every((final el) => el!);
|
||||
ServerSetupProgress get progress => ServerSetupProgress
|
||||
.values[_fulfilementList.where((final el) => el!).length + 1];
|
||||
.values[_fulfilementList.where((final el) => el!).length];
|
||||
|
||||
int get porgressBar {
|
||||
if (progress.index < 6) {
|
||||
|
|
Loading…
Reference in a new issue