diff --git a/app/Repositories/UserGroups/Account/AccountRepositoryInterface.php b/app/Repositories/UserGroups/Account/AccountRepositoryInterface.php index f6fea2a606..6dfa26ffea 100644 --- a/app/Repositories/UserGroups/Account/AccountRepositoryInterface.php +++ b/app/Repositories/UserGroups/Account/AccountRepositoryInterface.php @@ -74,5 +74,7 @@ interface AccountRepositoryInterface public function setUserGroup(UserGroup $userGroup): void; + public function getUserGroup(): UserGroup; + public function update(Account $account, array $data): Account; } diff --git a/resources/assets/v2/pages/dashboard/accounts.js b/resources/assets/v2/pages/dashboard/accounts.js index 179c49f965..2849004aa7 100644 --- a/resources/assets/v2/pages/dashboard/accounts.js +++ b/resources/assets/v2/pages/dashboard/accounts.js @@ -25,7 +25,6 @@ import formatMoney from "../../util/format-money.js"; import Get from "../../api/v2/model/account/get.js"; import {Chart} from 'chart.js'; import {getDefaultChartSettings} from "../../support/default-chart-settings.js"; -import {getColors} from "../../support/get-colors.js"; import {getCacheKey} from "../../support/get-cache-key.js"; import {getConfiguration} from "../../store/get-configuration.js";