+
direct link
@@ -310,8 +310,8 @@ export const TemplatesTable = ({
{isPending && (
-
diff --git a/apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx b/apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
index 1f1bb5317..dc34e9a33 100644
--- a/apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+++ b/apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
@@ -149,8 +149,8 @@ export default function AdminDocumentsPage() {
{isFindDocumentsLoading && (
-
diff --git a/apps/remix/app/routes/_authenticated+/admin+/email-domains._index.tsx b/apps/remix/app/routes/_authenticated+/admin+/email-domains._index.tsx
index 055620128..dc1f43530 100644
--- a/apps/remix/app/routes/_authenticated+/admin+/email-domains._index.tsx
+++ b/apps/remix/app/routes/_authenticated+/admin+/email-domains._index.tsx
@@ -182,8 +182,8 @@ export default function AdminEmailDomainsPage() {
{isFindEmailDomainsLoading && (
-
diff --git a/apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx b/apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
index 761ee7ba2..f1e9ab7e8 100644
--- a/apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
+++ b/apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
@@ -173,8 +173,8 @@ export default function AdminUnsealedDocumentsPage() {
{isLoading && (
-
diff --git a/apps/remix/app/routes/_authenticated+/dashboard.tsx b/apps/remix/app/routes/_authenticated+/dashboard.tsx
index 757323097..7b5a95af0 100644
--- a/apps/remix/app/routes/_authenticated+/dashboard.tsx
+++ b/apps/remix/app/routes/_authenticated+/dashboard.tsx
@@ -108,7 +108,7 @@ export default function DashboardPage() {
{org.avatarImageId && }
-
+
{org.name.slice(0, 1).toUpperCase()}
@@ -182,7 +182,7 @@ export default function DashboardPage() {
{team.avatarImageId && }
-
+
{team.name.slice(0, 1).toUpperCase()}
diff --git a/apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx b/apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
index 792806d2a..c78034d35 100644
--- a/apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+++ b/apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
@@ -129,7 +129,7 @@ export default function OrganisationSettingsTeamsPage() {
{team.avatarImageId && }
-
+
{team.name.slice(0, 1).toUpperCase()}
diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
index e7aa5c967..6e6f82d9f 100644
--- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
@@ -95,8 +95,8 @@ export default function WebhookPage() {
{isLoading && (
-
-
+
+
)}
diff --git a/apps/remix/app/routes/_profile+/p.$url.tsx b/apps/remix/app/routes/_profile+/p.$url.tsx
index 2f78ac076..99113124f 100644
--- a/apps/remix/app/routes/_profile+/p.$url.tsx
+++ b/apps/remix/app/routes/_profile+/p.$url.tsx
@@ -59,7 +59,9 @@ export default function PublicProfilePage({ loaderData }: Route.ComponentProps)
{publicProfile.avatarImageId && }
- {extractInitials(publicProfile.name)}
+
+ {extractInitials(publicProfile.name)}
+
@@ -138,7 +140,7 @@ export default function PublicProfilePage({ loaderData }: Route.ComponentProps)
-
+
Documents
diff --git a/packages/ui/primitives/alert.tsx b/packages/ui/primitives/alert.tsx
index f3e11b7f3..2f9ec4de5 100644
--- a/packages/ui/primitives/alert.tsx
+++ b/packages/ui/primitives/alert.tsx
@@ -10,7 +10,7 @@ const alertVariants = cva(
variants: {
variant: {
default: 'bg-green-50 text-green-700 [&_.alert-title]:text-green-800 [&>svg]:text-green-400',
- neutral: 'bg-gray-50 dark:bg-neutral-900/20 text-muted-foreground [&_.alert-title]:text-foreground',
+ neutral: 'bg-muted/50 text-muted-foreground [&_.alert-title]:text-foreground',
secondary: 'bg-blue-50 text-blue-700 [&_.alert-title]:text-blue-800 [&>svg]:text-blue-400',
destructive: 'bg-red-50 text-red-700 [&_.alert-title]:text-red-800 [&>svg]:text-red-400',
warning: 'bg-yellow-50 text-yellow-700 [&_.alert-title]:text-yellow-800 [&>svg]:text-yellow-400',
diff --git a/packages/ui/primitives/avatar.tsx b/packages/ui/primitives/avatar.tsx
index 557810ff4..7e1590ce7 100644
--- a/packages/ui/primitives/avatar.tsx
+++ b/packages/ui/primitives/avatar.tsx
@@ -63,7 +63,7 @@ const AvatarWithText = ({
{avatarSrc && }
- {avatarFallback}
+ {avatarFallback}
diff --git a/packages/ui/primitives/badge.tsx b/packages/ui/primitives/badge.tsx
index 401393cf7..c0b97152c 100644
--- a/packages/ui/primitives/badge.tsx
+++ b/packages/ui/primitives/badge.tsx
@@ -7,7 +7,7 @@ import { cn } from '../lib/utils';
const badgeVariants = cva('inline-flex items-center rounded-md text-xs font-medium ring-1 ring-inset w-fit', {
variants: {
variant: {
- neutral: 'bg-gray-50 text-gray-600 ring-gray-500/10 dark:bg-gray-400/10 dark:text-gray-400 dark:ring-gray-400/20',
+ neutral: 'bg-muted text-muted-foreground ring-border',
destructive: 'bg-red-50 text-red-700 ring-red-600/10 dark:bg-red-400/10 dark:text-red-400 dark:ring-red-400/20',
warning:
'bg-yellow-50 text-yellow-800 ring-yellow-600/20 dark:bg-yellow-400/10 dark:text-yellow-500 dark:ring-yellow-400/20',
diff --git a/packages/ui/primitives/command.tsx b/packages/ui/primitives/command.tsx
index 422f77509..d38038216 100644
--- a/packages/ui/primitives/command.tsx
+++ b/packages/ui/primitives/command.tsx
@@ -62,7 +62,7 @@ const CommandInput = React.forwardRef<
-
+
Advanced Options
diff --git a/packages/ui/primitives/document-flow/field-item.tsx b/packages/ui/primitives/document-flow/field-item.tsx
index 314790ec7..ca4fd24a7 100644
--- a/packages/ui/primitives/document-flow/field-item.tsx
+++ b/packages/ui/primitives/document-flow/field-item.tsx
@@ -273,7 +273,7 @@ const FieldItemInner = ({
>
{(field.type === FieldType.RADIO || field.type === FieldType.CHECKBOX) && field.fieldMeta?.label && (
-
+
Email Options
@@ -588,7 +588,7 @@ export const AddTemplateSettingsFormPartial = ({
-
+
Advanced Options