File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/admin/admin-vite-plugin/src/routes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ function processConfigProperties(
226226 isObjectProperty ( prop ) && isIdentifier ( prop . key , { name : "nested" } )
227227 ) as ObjectProperty | undefined
228228
229- let nestedValue : string | undefined = undefined
229+ let nestedValue : string | undefined
230230
231231 if ( isStringLiteral ( nested ?. value ) ) {
232232 nestedValue = nested . value . value
@@ -250,7 +250,7 @@ function processConfigProperties(
250250 isObjectProperty ( prop ) && isIdentifier ( prop . key , { name : "rank" } )
251251 ) as ObjectProperty | undefined
252252
253- let rankValue : number | undefined = undefined
253+ let rankValue : number | undefined
254254
255255 if ( isNumericLiteral ( rank ?. value ) ) {
256256 rankValue = rank . value . value
You can’t perform that action at this time.
0 commit comments