Skip to content

Commit 85e09bc

Browse files
committed
clean console log
1 parent e578b18 commit 85e09bc

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

frontend/app/components/Ingestion/IngestionView.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ const IngestionView: React.FC<IngestionViewProps> = ({
135135
};
136136

137137
const updateStatus = (data: StatusReport) => {
138-
console.log("Update status", data);
139138
if (data.status === "DONE") {
140139
addStatusMessage("File " + data.fileID + " imported", "SUCCESS");
141140
}

frontend/app/components/Login/LoginView.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ const VerbaThree = ({
8787
useEffect(() => {
8888
verba_model.scene.traverse((child) => {
8989
if (child instanceof THREE.Mesh) {
90-
console.log("Mesh:", child.name, "Material:", child.material);
9190
if (!useMaterial) {
9291
child.material = material;
9392
} else {

frontend/app/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ export default function Home() {
171171
message: string,
172172
type: "INFO" | "WARNING" | "SUCCESS" | "ERROR"
173173
) => {
174-
console.log("Adding status message:", message, type);
175174
setStatusMessages((prevMessages) => [
176175
...prevMessages,
177176
{ message, type, timestamp: new Date().toISOString() },

0 commit comments

Comments
 (0)