File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -610,7 +610,9 @@ function EnvironmentPauseResumeButton({
610610 type = "submit"
611611 disabled = { isLoading }
612612 variant = { env . paused ? "primary/medium" : "danger/medium" }
613- LeadingIcon = { isLoading ? < Spinner /> : env . paused ? PlayIcon : PauseIcon }
613+ LeadingIcon = {
614+ isLoading ? < Spinner color = "white" /> : env . paused ? PlayIcon : PauseIcon
615+ }
614616 shortcut = { { modifiers : [ "mod" ] , key : "enter" } }
615617 >
616618 { env . paused ? "Resume environment" : "Pause environment" }
Original file line number Diff line number Diff line change @@ -678,7 +678,7 @@ export function TierPro({
678678 < Button
679679 variant = "primary/medium"
680680 disabled = { isLoading }
681- LeadingIcon = { isLoading ? ( ) => < Spinner color = "dark " /> : undefined }
681+ LeadingIcon = { isLoading ? ( ) => < Spinner color = "white " /> : undefined }
682682 form = "subscribe-pro"
683683 >
684684 { `Upgrade to ${ plan . title } ` }
You can’t perform that action at this time.
0 commit comments