Skip to content

Commit

Permalink
url fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EzePerucca committed May 21, 2024
1 parent 8ad7e07 commit ab4c820
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,18 +108,18 @@
<p-card class="col-4 sm:col-6 md:col-4 xl:col-2">
<div class="flex flex-column gap-5 justify-content-between align-items-start h-full">
<span class="font-semibold text-lg">Current Block</span>
<span class="sm:text-sm md:text-sm xl:text-2xl font-bold text-900">{{infoData.currentBlockNumber | number}}</span>
<span class="sm:text-sm md:text-sm xl:text-2xl font-bold text-900">{{infoData.currentBlockNumber}}</span>
</div>
</p-card>
<p-card class="col-4 sm:col-6 md:col-4 xl:col-2">
<div class="flex flex-column gap-5 justify-content-between align-items-start h-full">
<span class="font-semibold text-lg">Gas Price(Wei)</span>
<span class="font-semibold text-lg">Gas Price (Wei)</span>
<span class="sm:text-sm md:text-sm xl:text-2xl font-bold text-900">{{infoData.currentGasPrice | number}}</span>
</div>
</p-card>
<p-card class="col-4 sm:col-6 md:col-4 xl:col-2">
<div class="flex flex-column gap-5 justify-content-between align-items-start h-full">
<span class="font-semibold text-lg">Priority Per Gas(Wei)</span>
<span class="font-semibold text-lg">Priority Per Gas (Wei)</span>
<span class="sm:text-sm md:text-sm xl:text-2xl font-bold text-900">{{infoData.maxPriorityFeePerGas | number}}</span>
</div>
</p-card>
Expand All @@ -144,5 +144,5 @@
</div>
</p-card>
</div>
<p-divider class="col-12"/>
<!-- <p-divider class="col-12"/> -->
</div>
1 change: 1 addition & 0 deletions src/environments/environment.development.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export const environment = {
production: false,
apiUrl: 'http://localhost:3000',
// apiUrl: 'http://xapp-alb-439058958.us-east-1.elb.amazonaws.com',
};

0 comments on commit ab4c820

Please sign in to comment.