run prettier formatting

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2021-08-09 11:42:22 +02:00
parent 467b758a7a
commit 923491eece
311 changed files with 1449 additions and 1667 deletions
@@ -24,9 +24,8 @@ type Props = {
};
export const RollbarProject = ({ entity }: Props) => {
const { items, organization, project, loading, error } = useTopActiveItems(
entity,
);
const { items, organization, project, loading, error } =
useTopActiveItems(entity);
return (
<RollbarTopItemsTable
@@ -25,7 +25,11 @@ export function useCatalogEntity() {
const catalogApi = useApi(catalogApiRef);
const { namespace, name } = useEntityCompoundName();
const { value: entity, error, loading } = useAsync(
const {
value: entity,
error,
loading,
} = useAsync(
() => catalogApi.getEntityByName({ kind: 'Component', namespace, name }),
[catalogApi, namespace, name],
);