Skip to content

Commit

Permalink
Processing UPPERCASE
Browse files Browse the repository at this point in the history
  • Loading branch information
babalicious-io committed Jan 28, 2025
1 parent b7319ce commit 6502d6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/shared/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function Button({
</div>
)
: isSubmitting
? "Processing..."
? "PROCESSING"
: props.children}
</button>
);
Expand Down
2 changes: 1 addition & 1 deletion components/shared/fee/FeeCalculatorBase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ export function FeeCalculatorBase({
onClick={onSubmit}
disabled={disabled || isSubmitting || (!isModal && !tosAgreed)}
>
{isSubmitting ? "Processing..." : confirmText || buttonName}
{isSubmitting ? "PROCESSING" : confirmText || buttonName}
</button>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions islands/stamping/src20/trade/TradeContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ export function TradeContent() {
onClick={handleCreatePSBT}
disabled={isSubmitting}
>
{isSubmitting ? "Processing..." : "CREATE PSBT"}
{isSubmitting ? "PROCESSING" : "CREATE PSBT"}
</button>
</div>

Expand Down Expand Up @@ -702,7 +702,7 @@ export function TradeContent() {
onClick={handleUtxoAttach}
disabled={isSubmitting}
>
{isSubmitting ? "Processing..." : "ATTACH"}
{isSubmitting ? "PROCESSING" : "ATTACH"}
</button>
</div>

Expand Down Expand Up @@ -762,7 +762,7 @@ export function TradeContent() {
onClick={handleCompleteSwap}
disabled={isSubmitting}
>
{isSubmitting ? "Processing..." : "Complete Swap"}
{isSubmitting ? "PROCESSING" : "Complete Swap"}
</button>
</div>
</div>
Expand Down

0 comments on commit 6502d6b

Please sign in to comment.