Skip to content

Commit 29dd207

Browse files
authored
Remove emojis from booking status updates
1 parent be71f7f commit 29dd207

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

blog/2026-02-07-building-a-durable-ai-travel-agent-with-laravel.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ You: book Grand Hotel in Paris for 2 guests, check-in 2026-03-01,
455455
2026-03-01 returning 2026-03-03.
456456
```
457457

458-
**1. Hotel books successfully**
458+
**1. Hotel books successfully**
459459

460460
```
461461
BookHotelActivity ........... RUNNING
@@ -469,7 +469,7 @@ The workflow now has a compensation registered:
469469
fn () => activity(CancelHotelActivity::class, "Hotel booked: Grand Hotel... Confirmation #902928")
470470
```
471471

472-
**2. Flight fails** (injected failure for demo purposes)
472+
**2. Flight fails** (injected failure for demo purposes)
473473

474474
```
475475
BookFlightActivity .......... RUNNING
@@ -478,7 +478,7 @@ BookFlightActivity ......... 8.37ms FAIL
478478

479479
The `NonRetryableException` propagates up to the `catch` block.
480480

481-
**3. Saga compensation kicks in automatically 🔄**
481+
**3. Saga compensation kicks in automatically**
482482

483483
```
484484
CancelHotelActivity ......... RUNNING
@@ -489,7 +489,7 @@ CancelHotelActivity ....... 3.74ms DONE
489489

490490
The framework ran the compensation with the *exact* confirmation details from the original booking.
491491

492-
**4. User gets clean feedback 💬**
492+
**4. User gets clean feedback**
493493

494494
```
495495
Agent: Flight booking failed: New York to Paris.

0 commit comments

Comments
 (0)