Skip to content

Commit

Permalink
feat(pass-reset): removed redundant code from pages
Browse files Browse the repository at this point in the history
  • Loading branch information
vgeffer committed Dec 10, 2023
1 parent a49f485 commit f173679
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
9 changes: 2 additions & 7 deletions src/pages/malynar/reset-sent/index.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
import {NextPage} from 'next'

import {PageLayout} from '@/components/PageLayout/PageLayout'
import {PasswordResetSent} from '@/components/PasswordResetSent/PasswordResetSent'
import Page from '../../strom/reset-sent/index'

const Verifikacia: NextPage = () => {
return (
<PageLayout title="Zabudnuté heslo" contentWidth={2}>
<PasswordResetSent />
</PageLayout>
)
return <Page />
}

export default Verifikacia
9 changes: 2 additions & 7 deletions src/pages/matik/reset-sent/index.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
import {NextPage} from 'next'

import {PageLayout} from '@/components/PageLayout/PageLayout'
import {PasswordResetSent} from '@/components/PasswordResetSent/PasswordResetSent'
import Page from '../../strom/reset-sent/index'

const Verifikacia: NextPage = () => {
return (
<PageLayout title="Zabudnuté heslo" contentWidth={2}>
<PasswordResetSent />
</PageLayout>
)
return <Page />
}

export default Verifikacia

0 comments on commit f173679

Please sign in to comment.