Skip to content

Commit

Permalink
fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
promer94 committed Dec 30, 2022
1 parent 3e36bd7 commit be97fb9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/use-swr-integration.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -439,13 +439,8 @@ describe('useSWR', () => {
const ChildComponent = () => {
const { data } = useSWR(key, _ => createResponse(_, { delay: 100 }))
return <div id="child">{data}</div>
const { data } = useSWR(key, _ => createResponse(_, { delay: 100 }))
return <div id="child">{data}</div>
}
const NestedRender = () => {
const { data, isValidating } = useSWR(key, _ =>
createResponse(_, { delay: 50 })
)
const { data, isValidating } = useSWR(key, _ =>
createResponse(_, { delay: 50 })
)
Expand Down

0 comments on commit be97fb9

Please sign in to comment.