Skip to content

Commit 5290f6d

Browse files
authored
Merge pull request #2980 from ecency/nt/in-app-fix
Nt/in app fix
2 parents f168f96 + 404b95d commit 5290f6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/basicUIElements/view/placeHolder/boostPlaceHolderView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const BoostPlaceHolder = () => {
1212

1313
const ratio = (dim.height - 300) / 50 / 1.3;
1414
const listElements = [];
15-
const isDarkTheme = useSelector((state) => state.application.isDarkTeme);
15+
const isDarkTheme = useSelector((state) => state.application.isDarkTheme);
1616
const color = isDarkTheme ? '#2e3d51' : '#f5f5f5';
1717
times(parseInt(ratio), (i) => {
1818
listElements.push(

src/containers/inAppPurchaseContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class InAppPurchaseContainer extends Component {
6363
this._purchaseUpdatedListener();
6464
}
6565

66-
this._getItems();
66+
await this._getItems();
6767
await this._handleQrPurchase();
6868

6969
// place rest of unconsumed purhcases in state

0 commit comments

Comments
 (0)