Skip to content

Commit

Permalink
add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
kami2016 committed Jun 28, 2024
1 parent 57f2bfe commit 7413b81
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
File renamed without changes
File renamed without changes
24 changes: 12 additions & 12 deletions dist/assets/index.57bd0557.js → dist/assets/index.e9e58a91.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Buero Vatter</title>


<script type="module" crossorigin src="/bv2024_frontend/assets/index.57bd0557.js"></script>
<script type="module" crossorigin src="/bv2024_frontend/assets/index.e9e58a91.js"></script>
<link rel="stylesheet" href="/bv2024_frontend/assets/index.c18003bd.css">
</head>
<body>
Expand Down
1 change: 0 additions & 1 deletion src/pages/Home/ServicePicComp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { useFetchMedia } from "../../utils/useFetchMedia";
import styles from "./servicepiccomp.module.css";
const ServicePicComp = ({ imgid, picName }) => {
const media = useFetchMedia(imgid, "imgs/category/forschung.png");

return (
<div className={`${styles.pic_container}`}>
<div className={`${styles.service_pic}`}>
Expand Down
1 change: 1 addition & 0 deletions src/utils/useFetchMedia.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export function useFetchMedia(imgid, default_media) {
navigate("/NotMatch404");
}
let image = pic.data.source_url;
console.log(image);
if (image) {
media = image;
}
Expand Down

0 comments on commit 7413b81

Please sign in to comment.