fix: remove debug console.log statements (refs #31)
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 4m40s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 29s
Deploy to Staging / Verify Staging (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 6s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 4m40s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 29s
Deploy to Staging / Verify Staging (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 6s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -252,11 +252,9 @@ export const VehicleDetailPage: React.FC = () => {
|
|||||||
if (fullDelete) {
|
if (fullDelete) {
|
||||||
// Full delete
|
// Full delete
|
||||||
await deleteDocument(documentToDelete.id);
|
await deleteDocument(documentToDelete.id);
|
||||||
console.log('Document deleted permanently');
|
|
||||||
} else {
|
} else {
|
||||||
// Remove vehicle association only
|
// Remove vehicle association only
|
||||||
await removeVehicleFromDocument({ docId: documentToDelete.id, vehicleId: id });
|
await removeVehicleFromDocument({ docId: documentToDelete.id, vehicleId: id });
|
||||||
console.log('Document removed from vehicle');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Invalidate queries to refresh data
|
// Invalidate queries to refresh data
|
||||||
|
|||||||
Reference in New Issue
Block a user