Skip to content

Commit

Permalink
update minor bug in SetAccountAction
Browse files Browse the repository at this point in the history
  • Loading branch information
sagishm committed Mar 10, 2024
1 parent 3c8b13e commit 12e7a04
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions GigyaNss/GigyaNss/Actions/SetAccountAction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,7 @@ class SetAccountAction<T: GigyaAccountProtocol>: Action<T> {
resolver.setAccount(params: params!)

} else {
var data: [String: Any] = [:];
data["data"] = params?["data"]
data["profile"] = params?["profile"]
var data: [String: Any] = params ?? [:]
businessApi?.callSetAccount(dataType: T.self, params: data, completion: self.apiClosure)

if publishPhotoOnSubmit {
Expand Down

0 comments on commit 12e7a04

Please sign in to comment.