Skip to content

Commit

Permalink
Fix: default AccesMode for repo creation switch back from blind to wr…
Browse files Browse the repository at this point in the history
…ite to avoid create new repos as blind
  • Loading branch information
J-Pabon committed Aug 13, 2024
1 parent 715e1fc commit fc57b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/app/cubits/repo_creation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class RepoCreationState {
final bool useCacheServers;

RepoCreationState({
this.accessMode = AccessMode.blind,
this.accessMode = AccessMode.write,
this.loading = false,
this.localSecretMode = initialLocalSecretMode,
this.substate = const RepoCreationPending(),
Expand Down

0 comments on commit fc57b61

Please sign in to comment.