**Remove dead links and redundant comments; improve styling and clarity across multiple files**

- Removed outdated links and unused properties in Sidebar and Welcome Home Text files.
- Dropped extraneous comments and consolidated imports in server files for streamlined code.
- Enhanced MarkdownEditor visuals with a colorful border for better user experience.
This commit is contained in:
geoffsee
2025-06-24 15:23:34 -04:00
parent a367812fe7
commit bdbc8de6d5
6 changed files with 7 additions and 40 deletions

View File

@@ -8,7 +8,6 @@ export const MarkdownEditor = (props: {
}) => {
return (
<Box>
<link rel="stylesheet" href="/packages/client/public" media="print" onLoad="this.media='all'" />
<Textarea
value={props.markdown}
placeholder={props.placeholder}
@@ -17,6 +16,7 @@ export const MarkdownEditor = (props: {
minHeight="150px"
height="100%"
resize="none"
borderColor="text.accent"
/>
</Box>
);