Skip to content

Commit

Permalink
remove unsued comments
Browse files Browse the repository at this point in the history
  • Loading branch information
m2rads committed Oct 24, 2024
1 parent 6361ccf commit 53adae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/(dashboard)/dashboard/test-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const TestEditor: React.FC<TestEditorProps> = ({ onRunTests }) => {
document.body.appendChild(tempSpan);
const width = tempSpan.getBoundingClientRect().width;
document.body.removeChild(tempSpan);
return Math.ceil(width) + 20; // Add some padding
return Math.ceil(width) + 20;
};

const handleInputChange = (
Expand Down

0 comments on commit 53adae8

Please sign in to comment.