Renamed the Owner to Admin

This commit is contained in:
Tiago Ribeiro
2023-11-20 23:46:43 +00:00
parent 13c8459d4b
commit 52d4b831ae
14 changed files with 56 additions and 49 deletions

View File

@@ -169,7 +169,7 @@ export default function Stats() {
<section className="flex flex-col gap-3">
<div className="w-full flex justify-between gap-8 items-center">
<>
{(user.type === "developer" || user.type === "owner") && (
{(user.type === "developer" || user.type === "admin") && (
<Select
className="w-full"
options={users.map((x) => ({value: x.id, label: `${x.name} - ${x.email}`}))}