Skip to content

Commit

Permalink
Preparation for release v.1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lu Nguyen committed Jun 15, 2023
1 parent dbeac76 commit d4853c3
Show file tree
Hide file tree
Showing 3 changed files with 423 additions and 25 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aesirx-dam-app",
"version": "1.2.11",
"version": "1.3.0",
"license": "GPL-3.0-only",
"author": "AesirX",
"main": "dist/index.js",
Expand All @@ -11,8 +11,8 @@
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"aesirx-lib": "^1.9.7",
"aesirx-uikit": "^1.0.8",
"aesirx-lib": "^1.10.0",
"aesirx-uikit": "^1.1.0",
"file-saver": "^2.0.5",
"mobx": "^6.9.0",
"mobx-react": "^7.6.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Storage/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Storage = () => {
const store = new DamStore();
const subscriptionFromLibrary = await store.getSubscription();
if (subscriptionFromLibrary) {
const damSubscirption = subscriptionFromLibrary.find((item) => {
const damSubscirption = subscriptionFromLibrary?.find((item) => {
if (item[DAM_SUBSCIPTION_FIELD_KEY.PRODUCT]?.type === 'product-aesirx-dam') {
return item;
}
Expand Down
Loading

0 comments on commit d4853c3

Please sign in to comment.