Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
fd7d9e2f
Commit
fd7d9e2f
authored
Mar 28, 2024
by
isstuev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ad provider fix 2
parent
1c9b8218
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
lib.tsx
jest/lib.tsx
+1
-0
app.tsx
lib/contexts/app.tsx
+1
-0
getServerSideProps.ts
nextjs/getServerSideProps.ts
+2
-2
No files found.
jest/lib.tsx
View file @
fd7d9e2f
...
...
@@ -21,6 +21,7 @@ const PAGE_PROPS = {
number
:
''
,
q
:
''
,
name
:
''
,
adBannerProvider
:
''
,
};
const
TestApp
=
({
children
}:
{
children
:
React
.
ReactNode
})
=>
{
...
...
lib/contexts/app.tsx
View file @
fd7d9e2f
...
...
@@ -16,6 +16,7 @@ const AppContext = createContext<PageProps>({
number
:
''
,
q
:
''
,
name
:
''
,
adBannerProvider
:
''
,
});
export
function
AppContextProvider
({
children
,
pageProps
}:
Props
)
{
...
...
nextjs/getServerSideProps.ts
View file @
fd7d9e2f
...
...
@@ -14,7 +14,7 @@ export type Props = {
number
:
string
;
q
:
string
;
name
:
string
;
adBannerProvider
:
string
|
null
;
adBannerProvider
:
string
;
}
export
const
base
:
GetServerSideProps
<
Props
>
=
async
({
req
,
query
})
=>
{
...
...
@@ -28,7 +28,7 @@ export const base: GetServerSideProps<Props> = async({ req, query }) => {
return
adBannerFeature
.
provider
;
}
}
return
null
;
return
''
;
})();
return
{
...
...
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