feat: remove settings rsshub tab and resize settings page

This commit is contained in:
DIYgod 2024-06-18 18:47:34 +08:00
parent 518ae569cc
commit 302dc4c7cd
No known key found for this signature in database
3 changed files with 1 additions and 15 deletions

View File

@ -27,7 +27,7 @@ export const registerAppMenu = () => {
}
const window = createWindow({
extraPath: "/settings",
width: 800,
width: 700,
height: 600,
resizable: false,
})

View File

@ -62,11 +62,6 @@ export const settingTabs = [
path: "actions",
className: "i-mingcute-bling-line",
},
{
name: "RSSHub",
path: "rsshub",
className: "i-mingcute-palette-line",
},
{
name: "Profile",
path: "profile",

View File

@ -1,9 +0,0 @@
import { SettingsTitle } from "@renderer/modules/settings/title"
export function Component() {
return (
<>
<SettingsTitle path="rsshub" className="mb-4" />
</>
)
}