The useMemo for sortedVariants was placed after the loading/error early returns, which violated React's rules of hooks (hooks must be called in the same order every render). Move it before the conditional returns. Fixes: Minified React error #310