providers: removing unnecessary stringify

This commit is contained in:
Hunter Miller 2021-08-19 20:36:05 -05:00
parent c128a43f58
commit df784e2ba1

View File

@ -53,7 +53,7 @@ export const Providers = ({ match }: ProvidersProps) => {
matches: results.map((p) => ({ value: p.shipName, display: p.nickname }))
});
}
}, [JSON.stringify(results)]);
}, [results]);
const isSelected = useCallback(
(target: Provider) => {