mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix lint
This commit is contained in:
@@ -65,7 +65,10 @@ export const plansInfo = derived(page, ($page) => $page.data.plansInfo as PlansM
|
||||
export const daysLeftInTrial = writable<number>(0);
|
||||
export const readOnly = writable<boolean>(false);
|
||||
|
||||
export const showBudgetAlert = derived(page, ($page) => ($page.data.organization?.billingLimits.budgetLimit ?? 0) >= 100);
|
||||
export const showBudgetAlert = derived(
|
||||
page,
|
||||
($page) => ($page.data.organization?.billingLimits.budgetLimit ?? 0) >= 100
|
||||
);
|
||||
|
||||
export function getRoleLabel(role: string) {
|
||||
return roles.find((r) => r.value === role)?.label ?? role;
|
||||
|
||||
Reference in New Issue
Block a user