- Waka is a community resource that tracks the approximate value of
- NC items, based on real-world trades.
+
+ The Waka Guide for NC trade values is closing down!
+ {" "}
+ We're sad to see them go, but excited that the team gets to move
+ onto the next phase in their life 💖
- The Waka Team aims to maintain the accuracy of the guide as fully
- as possible, but please remember values are often changing and
- with certain difficult-to-find or popular items it doesn't hurt to
- make a value check!
+ The Waka guide was last updated August 7, 2021, so this value
+ might not be accurate anymore. Consider checking in with the
+ Neoboards!
+
+
+
+ Thanks again to the Waka team for letting us experiment with
+ sharing their trade values here. Best wishes for everything to
+ come! 💜
@@ -456,4 +473,21 @@ function WakaPopover({ children, ...props }) {
);
}
+// August 21, 2021. (The month uses 0-indexing, but nothing else does! 🙃)
+const STOP_SHOWING_WAKA_AFTER = new Date(2021, 7, 21, 0, 0, 0, 0);
+
+/**
+ * shouldShowWaka returns true if, according to the browser, it's not yet
+ * August 21, 2021. It starts returning false at midnight on Aug 21.
+ *
+ * That way, our Waka deprecation message is on an auto-timer. After Aug 21,
+ * it's safe to remove all Waka UI code, and the Waka API endpoint and GraphQL
+ * fields. (It might be kind to return a placeholder string for the GraphQL
+ * case!)
+ */
+function shouldShowWaka() {
+ const now = new Date();
+ return now < STOP_SHOWING_WAKA_AFTER;
+}
+
export default ItemPageLayout;
diff --git a/src/app/WardrobePage/OutfitKnownGlitchesBadge.js b/src/app/WardrobePage/OutfitKnownGlitchesBadge.js
index f02248c..8bbf88b 100644
--- a/src/app/WardrobePage/OutfitKnownGlitchesBadge.js
+++ b/src/app/WardrobePage/OutfitKnownGlitchesBadge.js
@@ -176,7 +176,8 @@ function OutfitKnownGlitchesBadge({ appearance }) {
Invisible pets are affected by a number of glitches, including faces
sometimes being visible on-site, and errors in the HTML5 conversion. If
this pose looks incorrect, you can try another by clicking the emoji
- face to the right. But be aware that Neopets.com might look different!
+ face next to the species/color picker. But be aware that Neopets.com
+ might look different!