File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -147,14 +147,16 @@ extension SupabaseClientOptions.AuthOptions {
147147 redirectToURL: URL ? = nil ,
148148 flowType: AuthFlowType = AuthClient . Configuration. defaultFlowType,
149149 encoder: JSONEncoder = AuthClient . Configuration. jsonEncoder,
150- decoder: JSONDecoder = AuthClient . Configuration. jsonDecoder
150+ decoder: JSONDecoder = AuthClient . Configuration. jsonDecoder,
151+ autoRefreshToken: Bool = AuthClient . Configuration. defaultAutoRefreshToken
151152 ) {
152153 self . init (
153154 storage: AuthClient . Configuration. defaultLocalStorage,
154155 redirectToURL: redirectToURL,
155156 flowType: flowType,
156157 encoder: encoder,
157- decoder: decoder
158+ decoder: decoder,
159+ autoRefreshToken: autoRefreshToken
158160 )
159161 }
160162 #endif
You can’t perform that action at this time.
0 commit comments