Can't access HA over Samba

I got the Samba add-on 9.5.1 installed, HA core and OS is on latest version. Here’s the configuration off the Samba:

workgroup: WORKGROUP
username: xxxxxx
password: yyyyyy
allow_hosts:
  - 10.0.0.0/8
  - 172.16.0.0/12
  - 192.168.0.0/16
  - 192.168.1.0/75
  - 192.168.1.0/24
  - fe80::/10
veto_files:
  - ._*
  - .DS_Store
  - Thumbs.db
  - icon?
  - .Trashes
compatibility_mode: false
interface: ''

When I open a folder on my desktop and type in HA’s IP address, at first it asked me for a logic and password but then did nothing. Whenever I type in HA’s IP address now I get the following error:
sambaerr

Translation: the network path could not be accessed

However when I ping 192.168.1.26, HA is returning answers to those pings.

What’s the IP address of the device trying to join HA ?
Also this netmask seems to be illegal: 192.168.1.0/75

Try updating your ‘allow_hosts’, change ‘compatibility_mode’ to true and remove ‘interface’.

Example config:

allow_hosts:
  - 10.0.0.0/8
  - 172.16.0.0/12
  - 192.168.0.0/16
  - fe80::/10
compatibility_mode: true
password: xxxxxx
username: yyyyyy
veto_files:
  - ._*
  - .DS_Store
  - Thumbs.db
  - icon?
  - .Trashes
workgroup: WORKGROUP

Desktop would be 192.168.1.31
Is there a way that I could essentially all hosts that try to enter from 192.168.1.x? I wasn’t sure how to input that

the /75 netmask I don’t know where it came from, it was already written there like this in my config when I opened it

Edit: ok so after I changed the config I still couldn’t connect. But then I went into Control Panel → Credentials Manager in Windows, delete the login for this homeassistant Samba IP. After I re-typed the login, it now works under this IP.