mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
fixed eslint
This commit is contained in:
parent
100c4c138a
commit
42c9fed92c
2 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@
|
|||
},
|
||||
"scripts": {
|
||||
"ts-check": "tsc -p tsconfig.json --noEmit",
|
||||
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
||||
"lint": "next lint --fix",
|
||||
"prepare": "husky install",
|
||||
"next:dev": "next dev",
|
||||
"next:build": "next build",
|
||||
|
@ -96,7 +96,7 @@
|
|||
},
|
||||
"lint-staged": {
|
||||
"./**/*.{js,jsx,ts,tsx}": [
|
||||
"eslint --fix"
|
||||
"next lint --fix"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import React from 'react';
|
||||
|
||||
import { PageTitle } from '~/components/common/PageTitle';
|
||||
import { SettingsNotes } from '~/containers/settings/SettingsNotes';
|
||||
import { SettingsLayout } from '~/layouts/SettingsLayout';
|
||||
import { getPageTitle } from '~/utils/ssr/getPageTitle';
|
||||
import { SettingsNotes } from '~/containers/settings/SettingsNotes';
|
||||
|
||||
const SettingsNotesPage = () => (
|
||||
<div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue