Drives mounted in fstab have changing /run/ directories

I have my external drives mounted through the fstab. Upon restarting my computer my drives have /run/ directories that change. They should be mounted to the /mnt/ directory. For example my mark down note app has it’s working directory to /mnt/backup and upon restart I have to enter /mnt/backup which changes to a /run/ directory. I have another drive with another program that does the same thing. Interestingly steam which has another drive of its own doesn’t have this problem. Steam uses my drive labeled as BFD. This seems to be a fedora issue because arch based distros don’t have this issue.
Here’s a copy of my fstab and blkid.

fstab

UUID=3f292b13-b6c1-42a7-bc52-2328ffee704f / btrfs subvol=root,compress=zstd:1 0 0
UUID=70a20edb-c7f2-4740-b361-2ae9af748c1e /boot ext4 defaults 1 2
UUID=A5DB-D84C /boot/efi vfat umask=0077,shortname=winnt 0 2
UUID=3f292b13-b6c1-42a7-bc52-2328ffee704f /home btrfs subvol=home,compress=zstd:1 0 0

UUID=34f34a9e-196c-4e92-bb98-4b81014259eb /mnt/fire xfs defaults 0 0
UUID=3550e043-cde0-4167-b31b-37ca39d47784 /mnt/BFD ext4 defaults 0 0
UUID=a778c43e-e0e5-47fd-b20a-0e9f7cc32b35 /mnt/backup ext4 defaults 0 0

blkid

root@fedora:/home/gg# blkid
/dev/nvme0n1p3: LABEL="fedora" UUID="3f292b13-b6c1-42a7-bc52-2328ffee704f" UUID_SUB="ed0e69db-34b5-425c-b70b-faf92bc8caf3" BLOCK_SIZE="4096" TYPE="btrfs" PARTUUID="b76f797a-b56b-425b-8ed7-e3da5bf2bf83"
/dev/nvme0n1p1: UUID="A5DB-D84C" BLOCK_SIZE="512" TYPE="vfat" PARTLABEL="EFI System Partition" PARTUUID="8d176b2a-6368-40c6-9a51-a02b1d657334"
/dev/nvme0n1p2: UUID="70a20edb-c7f2-4740-b361-2ae9af748c1e" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="597edfc5-ac13-484a-8975-541657ae4ac4"
/dev/sdb1: LABEL="Fire" UUID="34f34a9e-196c-4e92-bb98-4b81014259eb" BLOCK_SIZE="4096" TYPE="xfs" PARTLABEL="Fire" PARTUUID="5fe2c4c2-3c2d-41f1-aee1-b55703420afe"
/dev/nvme1n1p1: LABEL="BFD" UUID="3550e043-cde0-4167-b31b-37ca39d47784" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f6a44b9f-6859-4009-83b0-bbcd32fac74c"
/dev/sda1: LABEL="backup" UUID="a778c43e-e0e5-47fd-b20a-0e9f7cc32b35" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f819d098-01"
/dev/zram0: LABEL="zram0" UUID="c0ce429a-d9fc-44f3-a2cb-a2e648a0a651" TYPE="swap"

Is this a Flatpak app? If so then you might need to make sure it’s permissioned to read /mnt/backup.

Doh! I completely forgot about that. I already had asked this question. If I remember right, you even gave me the solution last time. My memory is getting worse.

Ill use flatseal to give permissions

also

How to give a Flatpak app access to a directory