Skip to content

Commit 8dcf0df

Browse files
author
Alban Bailly
committed
fix data tyoe for recursive 200 response
1 parent 09f86e5 commit 8dcf0df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/2_molecules/ResponseItemElements.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,10 @@ export const ResponseItemElements = props => {
223223
<div className="w-full lg:w-3/4">
224224
<div>
225225
<div className="text-sm text-grey-darkest">
226-
{data.type && data.type}{" "}
227-
{data.pattern && (
226+
{dps.type && dps.type}{" "}
227+
{dps.pattern && (
228228
<span className="tag">
229-
{data.pattern}
229+
{dps.pattern}
230230
</span>
231231
)}
232232
</div>

0 commit comments

Comments
 (0)