From f2887019cf3e3ebf3e95a2ffec96d8df700d72f2 Mon Sep 17 00:00:00 2001 From: Darshan Date: Thu, 3 Jul 2025 19:00:32 +0530 Subject: [PATCH] address comment. --- src/lib/components/bottomModalAlert.svelte | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/lib/components/bottomModalAlert.svelte b/src/lib/components/bottomModalAlert.svelte index 7f838fc64..65917ab10 100644 --- a/src/lib/components/bottomModalAlert.svelte +++ b/src/lib/components/bottomModalAlert.svelte @@ -208,7 +208,7 @@ @@ -217,8 +217,10 @@ aria-label="Next" class="icon-cheveron-right" on:click={showNext} - class:u-cursor-pointer={currentIndex !== - filteredModalAlerts.length - 1} + style:cursor={currentIndex !== + filteredModalAlerts.length - 1 + ? 'pointer' + : undefined} disabled={currentIndex === filteredModalAlerts.length - 1} class:active={currentIndex !== filteredModalAlerts.length - 1}> @@ -317,7 +319,7 @@ @@ -326,8 +328,10 @@ aria-label="Next" class="icon-cheveron-right" on:click={showNext} - class:u-cursor-pointer={currentIndex !== - filteredModalAlerts.length - 1} + style:cursor={currentIndex !== + filteredModalAlerts.length - 1 + ? 'pointer' + : undefined} disabled={currentIndex === filteredModalAlerts.length - 1} class:active={currentIndex !==