Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-snake committed Jan 15, 2025
1 parent b4140a6 commit e6d6de1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/internet_identity/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,11 @@ fn apply_install_arg(maybe_arg: Option<InternetIdentityInit>) {
persistent_state.related_origins = Some(related_origins);
})
}
if let Some(openid_google_client_id) = arg.openid_google_client_id {
state::persistent_state_mut(|persistent_state| {
persistent_state.openid_google_client_id = Some(openid_google_client_id);
})
}
}
}

Expand Down

0 comments on commit e6d6de1

Please sign in to comment.