Sign in two dashboards at the same time, same host but different ports

I have two running docker instances of influxdb2 on the same machine.

Whenever I try to connect to one of localhost:12345, localhost:12346,
my session gets lost from the other web dashboard that I already signed in.
How can I sign in both web dashboard at the same time?

Thank you.

[errors]
influx_ssd | ts=2023-12-28T07:50:55.633773Z lvl=info msg=Unauthorized log_id=0mNr5GVW000 error=“session not found”
influx_hdd | ts=2023-12-28T08:01:52.876229Z lvl=info msg=Unauthorized log_id=0mNr5PKl000 error=“session not found”

[docker-compose.yml]

SSD

version: ‘3’
services:
influx_SSD:
image: influxdb:2.7.4-alpine
container_name: influx_ssd
environment:
- INFLUXDB_DB=influx
- INFLUXDB_ADMIN_USER=root
- INFLUXDB_ADMIN_PASSWORD=root123!
ports:
- ‘12345:8086’
volumes:
- /influx/ssd/data:/var/lib/influxdb2
- /influx/ssd/config:/etc/influxdb2

HDD

version: ‘3’
services:
influx_HDD:
image: influxdb:2.7.4-alpine
container_name: influx_hdd
environment:
- INFLUXDB_DB=influx
- INFLUXDB_ADMIN_USER=root
- INFLUXDB_ADMIN_PASSWORD=root123!
ports:
- ‘12346:8086’
volumes:
- /influx/hdd/data:/var/lib/influxdb2
- /influx/hdd/config:/etc/influxdb2