From 6865e45ff78ad5aedaeda548c829c30a00e98989 Mon Sep 17 00:00:00 2001 From: SamidyFR <168582143+SamidyFR@users.noreply.github.com> Date: Fri, 6 Mar 2026 23:57:54 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/accounts/config.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/js/accounts/config.js b/js/accounts/config.js index c4bf42a..dac0d18 100644 --- a/js/accounts/config.js +++ b/js/accounts/config.js @@ -8,11 +8,13 @@ const getEndpoint = () => { return 'https://auth.samidy.com/v1'; }; -const client = new Client() - .setEndpoint(getEndpoint()) - .setProject('auth-for-monochrome'); +const client = new Client().setEndpoint(getEndpoint()).setProject('auth-for-monochrome'); const account = new Account(client); export { client, account as auth }; -export const saveFirebaseConfig = () => { console.log("ill fix this tomorrow"); }; -export const clearFirebaseConfig = () => { console.log("ill fix this tomorrow"); }; \ No newline at end of file +export const saveFirebaseConfig = () => { + console.log('ill fix this tomorrow'); +}; +export const clearFirebaseConfig = () => { + console.log('ill fix this tomorrow'); +};