add refresh sites button

This commit is contained in:
miloschwartz 2025-06-27 16:43:09 -04:00
parent 073c318f12
commit 809a135721
No known key found for this signature in database
5 changed files with 61 additions and 11 deletions

View file

@ -71,7 +71,7 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
disabled={loading || props.disabled} // Disable button when loading
{...props}
>
{loading && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
{/* {loading && <Loader2 className="mr-2 h-4 w-4 animate-spin" />} */}
{props.children}
</Comp>
);