diff --git a/typescript/translucid/Translucid.js b/typescript/translucid/Translucid.js
index 36cf994..26b4b56 100644
--- a/typescript/translucid/Translucid.js
+++ b/typescript/translucid/Translucid.js
@@ -47,8 +47,8 @@ class Translucid {
                 });
             }
             decorated.push((prev) => {
-                console.log(`${__dirname}/../../${filepath}`);
-                // res.contentType(`${__dirname}/../../${filepath}`);
+                // console.log(`${__dirname}/../../${filepath}`);
+                res.contentType(`${__dirname}/../../${filepath}`);
                 res.send(prev);
             });
             decorated[0](readResults);
diff --git a/typescript/translucid/Translucid.ts b/typescript/translucid/Translucid.ts
index 10be791..9a408c8 100644
--- a/typescript/translucid/Translucid.ts
+++ b/typescript/translucid/Translucid.ts
@@ -55,8 +55,8 @@ class Translucid {
                 });
             }
             decorated.push((prev:any):void => {
-                console.log(`${__dirname}/../../${filepath}`);
-                // res.contentType(`${__dirname}/../../${filepath}`);
+                // console.log(`${__dirname}/../../${filepath}`);
+                res.contentType(`${__dirname}/../../${filepath}`);
                 res.send(prev);
             });