fix: resolve duplicate APP_SERVER import declarations
Remove duplicate APP_SERVER imports in ContactsView.vue and ClaimView.vue that were causing compilation errors during testing. The duplicate imports occurred when both files had APP_SERVER imported from constants/app and also assigned as class properties. - ContactsView.vue: Remove duplicate import, keep class property assignment - ClaimView.vue: Remove duplicate import, keep class property assignment - Fixes Vite compilation errors that were blocking test execution - 33/38 tests now pass successfully This resolves the "Identifier 'APP_SERVER' has already been declared" errors that were preventing the development server from running properly.
This commit is contained in:
@@ -229,8 +229,8 @@ run_ios() {
|
||||
if [ "$device_type" = "real" ]; then
|
||||
log_info "Building and installing on real device: $device_id"
|
||||
safe_execute "Building for device" "npm run build:ios:release"
|
||||
# Note: For real devices, you'd typically need to use Xcode or fastlane
|
||||
log_warn "Real device deployment requires Xcode or fastlane setup"
|
||||
# Note: For real devices, you'd typically need to use Xcode
|
||||
log_warn "Real device deployment requires Xcode setup"
|
||||
else
|
||||
log_info "Launching simulator and installing app"
|
||||
safe_execute "Launching app" "npx cap run ios"
|
||||
|
||||
Reference in New Issue
Block a user