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 {
147
147
redirectToURL: URL ? = nil ,
148
148
flowType: AuthFlowType = AuthClient . Configuration. defaultFlowType,
149
149
encoder: JSONEncoder = AuthClient . Configuration. jsonEncoder,
150
- decoder: JSONDecoder = AuthClient . Configuration. jsonDecoder
150
+ decoder: JSONDecoder = AuthClient . Configuration. jsonDecoder,
151
+ autoRefreshToken: Bool = AuthClient . Configuration. defaultAutoRefreshToken
151
152
) {
152
153
self . init (
153
154
storage: AuthClient . Configuration. defaultLocalStorage,
154
155
redirectToURL: redirectToURL,
155
156
flowType: flowType,
156
157
encoder: encoder,
157
- decoder: decoder
158
+ decoder: decoder,
159
+ autoRefreshToken: autoRefreshToken
158
160
)
159
161
}
160
162
#endif
You can’t perform that action at this time.
0 commit comments