Skip to content

Commit

Permalink
Fix asset qr scan (#7617)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashesh3 authored Apr 15, 2024
1 parent d2275f4 commit 6613db9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Assets/AssetsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const AssetsList = () => {

const checkValidAssetId = async (assetId: string) => {
const { data: assetData } = await request(routes.getAsset, {
pathParams: { id: assetId },
pathParams: { external_id: assetId },
});
try {
if (assetData) {
Expand Down

0 comments on commit 6613db9

Please sign in to comment.