File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/features/feeds/components Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -911,7 +911,7 @@ const StreamsTr = ({ metadata, isMainnet }) => (
911911 </ dd >
912912 </ div >
913913 ) }
914- { metadata . feedType === "Equities" && (
914+ { ( metadata . feedType === "Equities" || metadata . feedType === "Forex" ) && (
915915 < div className = { tableStyles . definitionGroup } >
916916 < dt >
917917 < span className = "label" > Report Schema:</ span >
@@ -1058,7 +1058,10 @@ export const MainnetTable = ({
10581058 return isValidStreamsFeed
10591059 }
10601060 if ( dataFeedType === "streamsRwa" ) {
1061- return metadata . contractType === "verifier" && metadata . docs . feedType === "Equities"
1061+ return (
1062+ metadata . contractType === "verifier" &&
1063+ ( metadata . docs . feedType === "Equities" || metadata . docs . feedType === "Forex" )
1064+ )
10621065 }
10631066
10641067 if ( dataFeedType === "streamsNav" ) {
@@ -1309,7 +1312,10 @@ export const TestnetTable = ({
13091312 }
13101313
13111314 if ( dataFeedType === "streamsRwa" ) {
1312- return metadata . contractType === "verifier" && metadata . docs . feedType === "Equities"
1315+ return (
1316+ metadata . contractType === "verifier" &&
1317+ ( metadata . docs . feedType === "Equities" || metadata . docs . feedType === "Forex" )
1318+ )
13131319 }
13141320
13151321 if ( dataFeedType === "streamsExRate" ) {
You can’t perform that action at this time.
0 commit comments