mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix: changelog fetching empty markdown file
This commit is contained in:
parent
8bcd548ae3
commit
285f084acb
2 changed files with 6 additions and 5 deletions
|
@ -26,7 +26,6 @@ export const App = (props) => {
|
||||||
setCurrentVersion(data.version);
|
setCurrentVersion(data.version);
|
||||||
setPreviousVersions(data.previous);
|
setPreviousVersions(data.previous);
|
||||||
}
|
}
|
||||||
console.log(data.version, preferencesStore.params.version);
|
|
||||||
}
|
}
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (preferencesStore._hasHydrated) {
|
if (preferencesStore._hasHydrated) {
|
||||||
|
|
|
@ -20,9 +20,11 @@ export const ChangelogModal = (props: {
|
||||||
>({});
|
>({});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
_fetchVersionChangelog(props.version).then((data) => {
|
if (props.version) {
|
||||||
setCurrentVersionChangelog(data);
|
_fetchVersionChangelog(props.version).then((data) => {
|
||||||
});
|
setCurrentVersionChangelog(data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (props.previousVersions.length > 0) {
|
if (props.previousVersions.length > 0) {
|
||||||
props.previousVersions.forEach((version) => {
|
props.previousVersions.forEach((version) => {
|
||||||
|
@ -36,7 +38,7 @@ export const ChangelogModal = (props: {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, [props.isOpen]);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
|
|
Loading…
Add table
Reference in a new issue