Skip to content

Commit

Permalink
fix: settings sidebar glitch (#4635)
Browse files Browse the repository at this point in the history
  • Loading branch information
Baylag321 committed Sep 21, 2023
1 parent 43bc034 commit ca7df0c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions packages/plugin-forms-ui/src/containers/Properties.tsx
Expand Up @@ -62,10 +62,6 @@ const PropertiesContainer = (props: FinalProps) => {
fieldsGetTypes
} = props;

if (fieldsGroupsQuery.loading) {
return <Spinner objective={true} />;
}

if (fieldsGetTypes.loading) {
return <Spinner />;
}
Expand Down
Expand Up @@ -50,10 +50,6 @@ class ProductListContainer extends React.Component<FinalProps> {
history
} = this.props;

if (productsQuery.loading) {
return false;
}

const products = productsQuery.products || [];

// remove action
Expand Down
4 changes: 0 additions & 4 deletions packages/plugin-tags-ui/src/containers/List.tsx
Expand Up @@ -75,10 +75,6 @@ const ListContainer = (props: FinalProps) => {
);
}

if (tagsQuery.loading) {
return <Spinner />;
}

const remove = tag => {
confirm(
`This action will untag all ${type}(s) with this tag and remove the tag. Are you sure?`
Expand Down

0 comments on commit ca7df0c

Please sign in to comment.