Skip to content

Commit 5dadda0

Browse files
committed
remove unnecesary fallback
1 parent effa98d commit 5dadda0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cli/lib/commands/push.js.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1779,7 +1779,7 @@ const pushTable = async ({ returnOnZero, attempts } = { returnOnZero: false }) =
17791779

17801780
const changes = [];
17811781
if (remoteTable.name !== table.name) changes.push('name');
1782-
if (remoteTable.rowSecurity !== (table.rowSecurity || false)) changes.push('rowSecurity');
1782+
if (remoteTable.rowSecurity !== table.rowSecurity) changes.push('rowSecurity');
17831783
if (JSON.stringify(remoteTable['$permissions']) !== JSON.stringify(table['$permissions'])) changes.push('permissions');
17841784

17851785
if (changes.length > 0) {

0 commit comments

Comments
 (0)