Skip to content

Commit

Permalink
fix readme not displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Jun 23, 2024
1 parent a7a6c6a commit 3c648ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Website/src/activitys/ModuleViewActivity/tabs/OverviewTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ const OverviewTab = () => {
}, [id, antifeatures]);

React.useEffect(() => {
if (readme) {
fetch(readme)
if (__readme) {
fetch(__readme)
.then((res) => {
if (res.status === 200) {
return res.text();
Expand Down

0 comments on commit 3c648ab

Please sign in to comment.