Skip to content

Commit

Permalink
fix: 追加エンジンでのUpdateInfoの型エラーを修正 (#1718)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabonerune authored Jan 17, 2024
1 parent 49e2c7c commit f17eb8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/help/UpdateInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ import { UpdateInfo } from "@/type/preload";
const props =
defineProps<{
latestVersion: string | undefined;
downloadLink: string;
latestVersion?: string;
downloadLink?: string;
updateInfos: UpdateInfo[];
isUpdateAvailable: boolean;
}>();
Expand Down

0 comments on commit f17eb8e

Please sign in to comment.