Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
C
ctas-box
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Fachri
ctas-box
Commits
1833b925
Commit
1833b925
authored
Oct 20, 2025
by
Rais Aryaguna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix error eslint
parent
3fa64b2e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
src/sections/bupot-21-26/bupot-bulanan/components/rekam/Identitas.tsx
.../bupot-21-26/bupot-bulanan/components/rekam/Identitas.tsx
+1
-1
src/sections/bupot-21-26/bupot-bulanan/view/bulanan-rekam-view.tsx
...ons/bupot-21-26/bupot-bulanan/view/bulanan-rekam-view.tsx
+1
-1
src/sections/bupot-unifikasi/bupot-dn/types/types.ts
src/sections/bupot-unifikasi/bupot-dn/types/types.ts
+1
-1
src/sections/bupot-unifikasi/bupot-dokumen-dipersamakan/view/dokumenDipersamakanRekamView.tsx
...okumen-dipersamakan/view/dokumenDipersamakanRekamView.tsx
+2
-2
src/sections/bupot-unifikasi/bupot-nr/components/rekamNr/Identitas.tsx
...bupot-unifikasi/bupot-nr/components/rekamNr/Identitas.tsx
+1
-1
src/sections/bupot-unifikasi/bupot-nr/view/nr-list-view.tsx
src/sections/bupot-unifikasi/bupot-nr/view/nr-list-view.tsx
+1
-1
No files found.
src/sections/bupot-21-26/bupot-bulanan/components/rekam/Identitas.tsx
View file @
1833b925
...
...
@@ -4,7 +4,7 @@ import Grid from '@mui/material/Grid';
import
dayjs
from
'
dayjs
'
;
import
{
useEffect
,
useState
}
from
'
react
'
;
import
{
useFormContext
}
from
'
react-hook-form
'
;
import
{
useParams
}
from
'
react-router
'
;
//
import { useParams } from 'react-router';
import
{
useKodeNegara
}
from
'
src/actions/master-data
'
;
import
{
Field
}
from
'
src/components/hook-form
'
;
...
...
src/sections/bupot-21-26/bupot-bulanan/view/bulanan-rekam-view.tsx
View file @
1833b925
...
...
@@ -9,7 +9,7 @@ import { FormProvider, useForm } from 'react-hook-form';
import
{
CustomBreadcrumbs
}
from
'
src/components/custom-breadcrumbs
'
;
import
{
Field
}
from
'
src/components/hook-form
'
;
import
{
DashboardContent
}
from
'
src/layouts/dashboard
'
;
import
{
usePa
rams
,
usePa
thname
}
from
'
src/routes/hooks
'
;
import
{
usePathname
}
from
'
src/routes/hooks
'
;
import
{
paths
}
from
'
src/routes/paths
'
;
import
Agreement
from
'
src/shared/components/agreement/Agreement
'
;
import
HeadingRekam
from
'
src/shared/components/HeadingRekam
'
;
...
...
src/sections/bupot-unifikasi/bupot-dn/types/types.ts
View file @
1833b925
...
...
@@ -8,7 +8,7 @@ export type TBaseResponseAPI<T> = {
total
?:
number
;
};
type
TResponseData
=
{};
//
type TResponseData = {};
type
TBaseResponseMetaPage
=
{
pageNum
:
number
|
null
;
...
...
src/sections/bupot-unifikasi/bupot-dokumen-dipersamakan/view/dokumenDipersamakanRekamView.tsx
View file @
1833b925
...
...
@@ -36,9 +36,9 @@ const DokumenDipersamakanRekamView = () => {
const
[
isOpenPanduan
,
setIsOpenPanduan
]
=
useState
<
boolean
>
(
false
);
const
[
isCheckedAgreement
,
setIsCheckedAgreement
]
=
useState
<
boolean
>
(
false
);
const
{
data
,
isLoading
,
isError
}
=
useGetKodeObjekPajak
();
const
{
data
}
=
useGetKodeObjekPajak
();
type
BpuFormData
=
z
.
infer
<
typeof
bpuSchema
>
;
//
type BpuFormData = z.infer<typeof bpuSchema>;
const
handleOpenPanduan
=
()
=>
setIsOpenPanduan
(
!
isOpenPanduan
);
...
...
src/sections/bupot-unifikasi/bupot-nr/components/rekamNr/Identitas.tsx
View file @
1833b925
...
...
@@ -16,7 +16,7 @@ type IdentitasProps = {
};
const
Identitas
=
({
isPengganti
}:
IdentitasProps
)
=>
{
const
{
dnId
}
=
useParams
();
//
const { dnId } = useParams();
const
{
setValue
}
=
useFormContext
();
const
[
jumlahKeterangan
,
setJumlahKeterangan
]
=
useState
<
number
>
(
0
);
...
...
src/sections/bupot-unifikasi/bupot-nr/view/nr-list-view.tsx
View file @
1833b925
...
...
@@ -74,7 +74,7 @@ export function NrListView() {
.
join
(
'
AND
'
);
};
const
{
data
,
isLoading
,
isError
}
=
useGetDn
({
const
{
data
,
isLoading
}
=
useGetDn
({
params
:
{
Page
:
paginationModel
.
page
+
1
,
// API biasanya 1-based
Limit
:
paginationModel
.
pageSize
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment