Remove city database to reduce package size

This commit is contained in:
David Stone
2025-02-07 23:49:22 -07:00
parent d71413886b
commit 2941c8b946
543 changed files with 22746 additions and 745243 deletions

View File

@ -349,7 +349,8 @@ class Tax {
* @since 2.0.0
* @return void
*/
public function render_taxes_side_panel() { // phpcs:disable ?>
public function render_taxes_side_panel() {
?>
<div id="wu-taxes-side-panel" class="wu-widget-inset">
@ -405,12 +406,12 @@ class Tax {
data: {},
computed: {
enabled: function() {
return <?php echo json_encode(wu_get_setting('enable_taxes')); ?>
return <?php echo wp_json_encode(wu_get_setting('enable_taxes')); ?>
}
}
});
});
</script>
<?php // phpcs:enable
<?php
}
}