mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
format
This commit is contained in:
@@ -26,9 +26,7 @@
|
||||
oncreated?: (team: Models.Membership) => void;
|
||||
} = $props();
|
||||
|
||||
const supportsProjectRoles = $derived(
|
||||
isCloud && !!$currentPlan?.supportsProjectSpecificRoles
|
||||
);
|
||||
const supportsProjectRoles = $derived(isCloud && !!$currentPlan?.supportsProjectSpecificRoles);
|
||||
|
||||
let email = $state('');
|
||||
let name = $state('');
|
||||
|
||||
@@ -31,9 +31,7 @@
|
||||
onupdated?: (membership: Models.Membership) => void;
|
||||
} = $props();
|
||||
|
||||
const supportsProjectRoles = $derived(
|
||||
isCloud && !!$currentPlan?.supportsProjectSpecificRoles
|
||||
);
|
||||
const supportsProjectRoles = $derived(isCloud && !!$currentPlan?.supportsProjectSpecificRoles);
|
||||
const defaultRole = isSelfHosted ? 'owner' : 'developer';
|
||||
|
||||
let error = $state<string>(null);
|
||||
|
||||
Reference in New Issue
Block a user