Skip to content

Commit

Permalink
Merge pull request #90 from soonaverse/master
Browse files Browse the repository at this point in the history
merge master
  • Loading branch information
adamunchained authored Nov 17, 2023
2 parents 189ad28 + ae2490c commit 6a39370
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Dependencies
run: npm install
- name: Build project
run: npm run build:prod
run: npm run build
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion src/app/@api/file.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class FileApi {
.pipe(
map((b: any) => {

Check warning on line 55 in src/app/@api/file.api.ts

View workflow job for this annotation

GitHub Actions / front_end_es_lint

Unexpected any. Specify a different type
if (item.onSuccess) {
item.onSuccess(b.url, item.file, b.url);
item.onSuccess(b.data.url, item.file, b.data.url);
}
}),
)
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/auth/services/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ export class AuthService {

// Add public key if it's provided for non ETH address.
if (publicKey && network) {
returnObj.publicKey = {
returnObj.legacyPublicKey = {
hex: publicKey,
network: network,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ export class WalletDeeplinkComponent {
// Shimmer Network
const parameters = {
address: this.targetAddress,
baseCoinAmount:
this.tokenId && this.surplus ? Number(this.targetAmount).toFixed(0) : undefined,
baseCoinAmount: Number(this.targetAmount ?? 0).toFixed(0),
tokenId: this.tokenId,
tokenAmount: this.tokenId ? this.tokenAmount : undefined,
tag: WEN_NAME.toLowerCase(),
Expand Down

0 comments on commit 6a39370

Please sign in to comment.