From 218dfcc865f9dceb5985ff6a83269904d78f66a6 Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 5 Jun 2024 12:25:26 +0200 Subject: [PATCH] Fix useless stuf --- LeStorage/Services.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LeStorage/Services.swift b/LeStorage/Services.swift index ffa70d9..cde7f94 100644 --- a/LeStorage/Services.swift +++ b/LeStorage/Services.swift @@ -279,7 +279,7 @@ public class Services { /// - user: A user instance to send to the server public func createAccount(user: U) async throws -> V { let response: V = try await _runRequest(serviceConf: .createAccount, payload: user) - Store.main.setUserName(user.username) +// Store.main.setUserName(user.username) return response }