From 8973c12ff2fd70ed0b62e0c12d315cfa8344e62f Mon Sep 17 00:00:00 2001 From: simonkernel <100631798+simonkernel@users.noreply.github.com> Date: Mon, 22 Aug 2022 14:34:46 -0700 Subject: [PATCH] Increase # of NFTs in showcase This will likely need some additional styling. https://github.com/kernel-community/signature-economies/issues/134 --- packages/dapp/src/utils/graph.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/dapp/src/utils/graph.js b/packages/dapp/src/utils/graph.js index f6a4a79eb..510a68792 100644 --- a/packages/dapp/src/utils/graph.js +++ b/packages/dapp/src/utils/graph.js @@ -52,11 +52,11 @@ const GET_ALL_HIGHLIGHT_NFTS = ` const Queries = { getAllHighlightNfts: { query: GET_ALL_HIGHLIGHT_NFTS, - variables: { first: 4 } + variables: { first: 12 } }, getAllSealedNfts: { query: GET_ALL_SEALED_NFTS, - variables: { first: 4 } + variables: { first: 12 } }, getStewardNfts: { query: GET_STEWARD_NFTS,