-
+
+
+
+
+ }
+ >
+
+
+ {sensitiveVisible && tokenName.length > 16 && (
+
+ {tokenName}
+
+ )}
+
+
{metaParts.length > 0 && (
{metaParts.join(' · ')}
@@ -486,7 +514,7 @@ export function useCommonLogsColumns(isAdmin: boolean): ColumnDef[] {
)
},
meta: { label: t('Token') },
- size: 130,
+ size: 160,
})
columns.push(
diff --git a/web/default/src/features/users/components/users-table.tsx b/web/default/src/features/users/components/users-table.tsx
index 65f61020..310a57f1 100644
--- a/web/default/src/features/users/components/users-table.tsx
+++ b/web/default/src/features/users/components/users-table.tsx
@@ -187,11 +187,13 @@ export function UsersTable() {
columnId: 'status',
title: t('Status'),
options: getUserStatusOptions(t),
+ singleSelect: true,
},
{
columnId: 'role',
title: t('Role'),
options: getUserRoleOptions(t),
+ singleSelect: true,
},
],
}}
diff --git a/web/default/src/features/wallet/lib/affiliate.ts b/web/default/src/features/wallet/lib/affiliate.ts
index da6556b2..3e4a12f8 100644
--- a/web/default/src/features/wallet/lib/affiliate.ts
+++ b/web/default/src/features/wallet/lib/affiliate.ts
@@ -25,5 +25,5 @@ For commercial licensing, please contact support@quantumnous.com
*/
export function generateAffiliateLink(affCode: string): string {
if (typeof window === 'undefined') return ''
- return `${window.location.origin}/register?aff=${affCode}`
+ return `${window.location.origin}/sign-up?aff=${affCode}`
}