@yeeyoon/library 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -276,7 +276,16 @@ const Header = (props) => {
|
|
|
276
276
|
setPlatformsModalShow(false);
|
|
277
277
|
}}
|
|
278
278
|
>
|
|
279
|
-
<PlatformModal
|
|
279
|
+
<PlatformModal
|
|
280
|
+
platforms={platforms.filter((item) => {
|
|
281
|
+
const { id } = item;
|
|
282
|
+
return (
|
|
283
|
+
id !== '225ea3ae063711ecb0c00c42a1ff8370' &&
|
|
284
|
+
id !== '14205a67063711ecb0c00c42a1ff8370'
|
|
285
|
+
);
|
|
286
|
+
})}
|
|
287
|
+
redirectUrl={redirectUrl}
|
|
288
|
+
/>
|
|
280
289
|
</Modal>
|
|
281
290
|
</>
|
|
282
291
|
);
|