Skip to content

Commit

Permalink
clean console log
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashacker committed Dec 10, 2024
1 parent e578b18 commit 85e09bc
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion frontend/app/components/Ingestion/IngestionView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ const IngestionView: React.FC<IngestionViewProps> = ({
};

const updateStatus = (data: StatusReport) => {
console.log("Update status", data);
if (data.status === "DONE") {
addStatusMessage("File " + data.fileID + " imported", "SUCCESS");
}
Expand Down
1 change: 0 additions & 1 deletion frontend/app/components/Login/LoginView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ const VerbaThree = ({
useEffect(() => {
verba_model.scene.traverse((child) => {
if (child instanceof THREE.Mesh) {
console.log("Mesh:", child.name, "Material:", child.material);
if (!useMaterial) {
child.material = material;
} else {
Expand Down
1 change: 0 additions & 1 deletion frontend/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ export default function Home() {
message: string,
type: "INFO" | "WARNING" | "SUCCESS" | "ERROR"
) => {
console.log("Adding status message:", message, type);
setStatusMessages((prevMessages) => [
...prevMessages,
{ message, type, timestamp: new Date().toISOString() },
Expand Down

0 comments on commit 85e09bc

Please sign in to comment.