Skip to content

Commit

Permalink
fix: 5560 - proof files from PROD/DEV
Browse files Browse the repository at this point in the history
Impacted files:
* `price_proof_page.dart`: used prices PROD/DEV instead of product PROD/DEV settings
* `prices_proofs_page.dart`: used prices PROD/DEV instead of product PROD/DEV settings
  • Loading branch information
monsieurtanuki committed Aug 28, 2024
1 parent 939445f commit bf02db2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/smooth_app/lib/pages/prices/price_proof_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ class PriceProofPage extends StatelessWidget {
}

String _getUrl() => proof
.getFileUrl(uriProductHelper: ProductQuery.uriProductHelper)
.getFileUrl(uriProductHelper: ProductQuery.uriPricesHelper)
.toString();
}
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class _PriceProofImage extends StatelessWidget {
imageProvider: NetworkImage(
proof
.getFileUrl(
uriProductHelper: ProductQuery.uriProductHelper,
uriProductHelper: ProductQuery.uriPricesHelper,
)
.toString(),
),
Expand Down

0 comments on commit bf02db2

Please sign in to comment.