website refactor

This commit is contained in:
2026-01-14 02:02:24 +01:00
parent 8d7c709e0c
commit 4522d41aef
291 changed files with 12763 additions and 9309 deletions

View File

@@ -166,7 +166,7 @@ module.exports = {
// Check router.push() and router.replace()
CallExpression(node) {
if (node.callee.type === 'MemberExpression' &&
node.callee.property.name === 'push' || node.callee.property.name === 'replace') {
(node.callee.property.name === 'push' || node.callee.property.name === 'replace')) {
// Check if it's router.push/replace
const calleeObj = node.callee.object;