Skip to content

Commit 18246b9

Browse files
committed
fix: update GitHub Actions workflow to not trigger on pull requests and fix formatting in getTabs component
1 parent 82d4353 commit 18246b9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: main-ci
22

33
on:
44
push:
5-
pull_request:
65

76
jobs:
87
build:

src/modules/account/getTabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export function getTabs({
7676
type="submit"
7777
disabled={
7878
Number.isNaN(Number(depositAmount)) ||
79-
Number(depositAmount) < 10**-9 || // 1 nRLC
79+
Number(depositAmount) < 10 ** -9 || // 1 nRLC
8080
Number(depositAmount) > maxToDeposit
8181
}
8282
>

0 commit comments

Comments
 (0)