diff --git a/frontend/src/components/terminal/TerminalAllRobots.tsx b/frontend/src/components/terminal/TerminalAllRobots.tsx
index 3a5b98d0..6b7e7507 100644
--- a/frontend/src/components/terminal/TerminalAllRobots.tsx
+++ b/frontend/src/components/terminal/TerminalAllRobots.tsx
@@ -27,16 +27,14 @@ const TerminalAllRobots = ({ robots, onDeleteRobot }: Props) => {
))}
) : (
-
-
- No robots found.
-
+
+
No robots found.
)}
diff --git a/store/app/crud/base.py b/store/app/crud/base.py
index 650f13fd..32794917 100644
--- a/store/app/crud/base.py
+++ b/store/app/crud/base.py
@@ -406,6 +406,12 @@ async def _update_item(self, id: str, model_type: type[T], updates: dict[str, An
async def _upload_to_s3(self, data: IO[bytes], name: str, filename: str, content_type: str) -> None:
"""Uploads some data to S3."""
try:
+ import time
+ from datetime import datetime
+
+ logger.info(f"Container UTC time: {datetime.utcnow().isoformat()}")
+ logger.info(f"Container local time: {datetime.now().isoformat()}")
+ logger.info(f"Container timezone: {time.tzname}")
logger.info("=== S3 Upload Debug Info ===")
logger.info(f"Bucket: {settings.s3.bucket}")
logger.info(f"Key: {settings.s3.prefix}{filename}")