}>
diff --git a/src/components/FormElements/MultiSelect.tsx b/src/components/FormElements/MultiSelect.tsx
index a24a170..83f9723 100644
--- a/src/components/FormElements/MultiSelect.tsx
+++ b/src/components/FormElements/MultiSelect.tsx
@@ -152,13 +152,13 @@ function MultiSelect
({
ref={combinedRef}
onClick={open}
onBlur={onBlur}
- tabIndex={0}
+ tabIndex={disabled ? -1 : 0}
className={cn(
"w-full rounded-lg border-[1.5px] border-stroke bg-transparent outline-none transition focus:border-primary disabled:cursor-default disabled:bg-gray-2 data-[active=true]:border-primary dark:border-dark-3 dark:bg-dark-2 dark:focus:border-primary dark:disabled:bg-dark dark:data-[active=true]:border-primary",
error && "border-red focus:border-red dark:border-red",
"flex min-h-[50px] cursor-pointer flex-wrap items-center gap-2 px-3 py-2",
height === "sm" && "min-h-[42px]",
- disabled && "pointer-events-none opacity-60",
+ disabled && "!cursor-not-allowed opacity-60",
)}
data-active={active}
>
diff --git a/src/components/Tables/top-channels/index.tsx b/src/components/Tables/top-channels/index.tsx
index 7db764e..b833229 100644
--- a/src/components/Tables/top-channels/index.tsx
+++ b/src/components/Tables/top-channels/index.tsx
@@ -22,7 +22,7 @@ export async function TopChannels({ className }: { className?: string }) {
Top Channels
-
+
Source
@@ -39,7 +39,8 @@ export async function TopChannels({ className }: { className?: string }) {
className="text-center text-base font-medium text-dark dark:text-white"
key={channel.name + i}
>
-
+
+
{compactFormat(channel.visitors)}
diff --git a/src/components/forms/notifications/CreateNotification.tsx b/src/components/forms/notifications/CreateNotification.tsx
index c246fb8..66868dc 100644
--- a/src/components/forms/notifications/CreateNotification.tsx
+++ b/src/components/forms/notifications/CreateNotification.tsx
@@ -82,9 +82,7 @@ const CreateNotificationForm = () => {
label="recipient"
items={recipient ?? []}
placeholder={
- recipient && recipient.length > 0
- ? "Choose recipients"
- : ""
+ recipient && recipient.length > 0 ? "Choose recipients" : ""
}
name="recipient"
/>