We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d464db4 commit 18b8560Copy full SHA for 18b8560
packages/provider/src/tasks/client/clientTasks.ts
@@ -13,7 +13,7 @@
13
// limitations under the License.
14
15
import { validateAddress } from "@polkadot/util-crypto/address";
16
-import { ProsopoApiError, type Logger } from "@prosopo/common";
+import { type Logger, ProsopoApiError } from "@prosopo/common";
17
import { CaptchaDatabase, ClientDatabase } from "@prosopo/database";
18
import {
19
type IUserSettings,
@@ -191,7 +191,7 @@ export class ClientTaskManager {
191
},
192
);
193
} catch (e: unknown) {
194
- const getClientListError = new ProsopoApiError("DATABASE.UNKNOWN", {
+ const getClientListError = new ProsopoApiError("DATABASE.UNKNOWN", {
195
context: { error: e },
196
logger: this.logger,
197
});
0 commit comments