We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87e828 commit 42b0415Copy full SHA for 42b0415
src/components/diff/Diff.tsx
@@ -34,7 +34,6 @@ export interface IDiffProps {
34
*/
35
export function Diff(props: IDiffProps) {
36
const fileExtension = PathExt.extname(props.path).toLocaleLowerCase();
37
- console.log(`Invoking Diff with Path ${props.path}`);
38
if (fileExtension in DIFF_PROVIDER_REGISTRY) {
39
const DiffProvider = DIFF_PROVIDER_REGISTRY[fileExtension];
40
return <DiffProvider {...props} />;
0 commit comments