Skip to content

Commit

Permalink
fix: appInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Jun 12, 2024
1 parent bdac16d commit b493ff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export const getDevice = (snapshot: Snapshot): Device => {

export const getAppInfo = (snapshot: Snapshot): AppInfo => {
return (
snapshot.appInInfo || {
snapshot.appInfo || {
id: snapshot.appId,
name: snapshot.appName,
versionCode: snapshot.appVersionCode,
Expand Down
2 changes: 1 addition & 1 deletion src/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export type Overview = {
screenHeight: number;
isLandscape: boolean;

appInInfo: AppInfo;
appInfo: AppInfo;
gkdAppInfo: AppInfo;

/**
Expand Down

0 comments on commit b493ff1

Please sign in to comment.