Skip to content

Commit f8c7c27

Browse files
More clean up
1 parent ea79b7c commit f8c7c27

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/meta-updater/src/updatesScopeSupportFacetInfos.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ export function updatesScopeSupportFacetInfos(
2828
const facetInfo =
2929
facetsInfos[facet as ScopeSupportFacet | TextualScopeSupportFacet];
3030
const scopeType = serializeScopeType(facetInfo.scopeType);
31-
if (scopeType != currentScopeType) {
32-
if (currentScopeType !== null) {
31+
if (scopeType !== currentScopeType) {
32+
if (currentScopeType != null) {
3333
rows.push("");
3434
}
3535
currentScopeType = scopeType;

0 commit comments

Comments
 (0)