Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.7",
"@ecency/render-helper": "^2.5.23",
"@ecency/sdk": "^2.3.82",
"@ecency/sdk": "^2.3.83",
"@esteemapp/react-native-autocomplete-input": "^4.2.1",
"@esteemapp/react-native-multi-slider": "^1.1.0",
"@native-html/iframe-plugin": "^2.6.1",
Expand Down
11 changes: 4 additions & 7 deletions src/providers/queries/walletQueries/walletQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,13 +396,10 @@ export const useActivitiesQuery = (symbol: string, layer: PortfolioLayer) => {

const chainQuery = useInfiniteQuery({
...chainQueryOptions,
// Guard, not a workaround. These options used to seed
// `initialData: { pages: [], pageParams: [] }` for the web's server-prefetched
// pages; against this client's staleTime of 60s that empty seed reads as fresh
// data and suppresses the very first fetch, so the history renders empty and
// nothing reports an error. @ecency/sdk 2.3.80 dropped it, and no SDK test pins
// its absence, so keep this until one does.
initialData: undefined,
// No initialData override needed: these options used to seed an empty page set
// that read as fresh against this client's 60s staleTime and suppressed the very
// first fetch. @ecency/sdk 2.3.80 dropped the seed and 2.3.83 pins its absence
// with a spec, so the contract is enforced upstream.
enabled: !!username && isHive,
});

Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1210,10 +1210,10 @@
url "^0.11.0"
xss "^1.0.9"

"@ecency/sdk@^2.3.82":
version "2.3.82"
resolved "https://registry.yarnpkg.com/@ecency/sdk/-/sdk-2.3.82.tgz#74e9cfcb278de2f810446262c3516db539c8340d"
integrity sha512-8kYahuQ8CcCDimKsze22GXCziyv4fQDAyshj8QYQEySVFiMj0sHU06F2g0IZ+tg+pufpcImp55JQae+a65naYQ==
"@ecency/sdk@^2.3.83":
version "2.3.83"
resolved "https://registry.yarnpkg.com/@ecency/sdk/-/sdk-2.3.83.tgz#c61382f9ff8a16eb194811eee0e157b2c9502674"
integrity sha512-DXzv++9jHGaSKGbcIxqdTZpfCSjUSEFkQxime0Fx+qk5l+6X4kdyMdBpWm/hUiSaDkZAPv7rlbYluiRYtN0vZg==
dependencies:
"@noble/ciphers" "^2.1.1"
"@noble/curves" "^2.0.1"
Expand Down
Loading