@@ -138,7 +138,7 @@ export function ClientDetailsInput({
138138 key = { category . id }
139139 variant = { isSelected ? "default" : "outline" }
140140 size = "sm"
141- className = { `text-sm flex-col justify-center px-1 min-h-20 w-auto whitespace-normal break-words h-auto ${
141+ className = { `text-sm flex-col justify-center px-1 min-h-20 w-auto whitespace-normal break-words h-auto disabled:cursor-not-allowed ${
142142 isSelected
143143 ? "bg-blue-600 text-white hover:bg-blue-700"
144144 : "text-gray-600 hover:bg-gray-100 hover:text-gray-900"
@@ -169,7 +169,7 @@ export function ClientDetailsInput({
169169 : "outline"
170170 }
171171 size = "sm"
172- className = { `h-12 text-sm ${
172+ className = { `h-12 text-sm disabled:cursor-not-allowed ${
173173 selectedResourceTypes . includes ( "goodwill" )
174174 ? "bg-blue-600 text-white hover:bg-blue-700"
175175 : "text-gray-600 hover:bg-gray-100 hover:text-gray-900"
@@ -189,7 +189,7 @@ export function ClientDetailsInput({
189189 : "outline"
190190 }
191191 size = "sm"
192- className = { `h-12 text-sm ${
192+ className = { `h-12 text-sm disabled:cursor-not-allowed ${
193193 selectedResourceTypes . includes ( "government" )
194194 ? "bg-blue-600 text-white hover:bg-blue-700"
195195 : "text-gray-600 hover:bg-gray-100 hover:text-gray-900"
@@ -209,7 +209,7 @@ export function ClientDetailsInput({
209209 : "outline"
210210 }
211211 size = "sm"
212- className = { `h-12 text-sm ${
212+ className = { `h-12 text-sm disabled:cursor-not-allowed ${
213213 selectedResourceTypes . includes ( "community" )
214214 ? "bg-blue-600 text-white hover:bg-blue-700"
215215 : "text-gray-600 hover:bg-gray-100 hover:text-gray-900"
@@ -252,7 +252,7 @@ export function ClientDetailsInput({
252252 variant = "ghost"
253253 size = "sm"
254254 onClick = { onClearAllFilters }
255- className = "text-gray-700 hover:bg-gray-100 hover:text-gray-900"
255+ className = "text-gray-700 hover:bg-gray-100 hover:text-gray-900 disabled:cursor-not-allowed "
256256 data-testid = "clearFiltersButton"
257257 disabled = { loading }
258258 >
@@ -287,7 +287,7 @@ export function ClientDetailsInput({
287287 loading ||
288288 ( selectedCategories . length === 0 && ! clientDescription . trim ( ) )
289289 }
290- className = "min-w-[16rem] w-full row-auto generate-referrals-button text-lg pt-6 pb-6"
290+ className = "min-w-[16rem] w-full row-auto generate-referrals-button text-lg pt-6 pb-6 cursor-pointer disabled:!cursor-not-allowed "
291291 data-testid = "findResourcesButton"
292292 >
293293 { ! loading && (
0 commit comments