How to skip "Quick Set" after login?

When I access to Mikrotik admin page (example http://192.168.231.1:8088), after login success “Quick Set” appears instead of “WebFig”.
RouterOS v7.11

My config:

# 2023-08-26 17:27:04 by RouterOS 7.11
#
# model = RB1100x4
/interface bridge
add comment="Bridge or previously is bridge-local (by vee). No snoopings to use \
    HW offload." frame-types=admit-only-vlan-tagged name=bridge1 \
    vlan-filtering=yes
/interface ethernet
set [ find default-name=ether1 ] comment="From modem/ONU (by vee)" name=\
    ether1-gateway
set [ find default-name=ether2 ] comment=\
    "Reserved for additional 1st floor network switch (by vee)" loop-protect=on
set [ find default-name=ether3 ] comment="Log server (by vee)"
set [ find default-name=ether4 ] comment="VPN (by vee)"
set [ find default-name=ether6 ] comment="To 2nd floor (by vee)" loop-protect=\
    on
set [ find default-name=ether7 ] advertise=\
    10M-half,10M-full,100M-half,100M-full comment=\
    "To 2nd floor (secondary). Previous to 3rd floor (by vee)" loop-protect=on
set [ find default-name=ether8 ] comment=\
    "To 4th floor (by vee). Reserved for CCTV." loop-protect=on
set [ find default-name=ether9 ] comment="To 5th floor (by vee)" loop-protect=\
    on
set [ find default-name=ether10 ] advertise=\
    10M-half,10M-full,100M-half,100M-full comment=\
    "To 5th floor (secondary). Previous for 6th floor (by vee)" loop-protect=on
set [ find default-name=ether11 ] comment="To 1st floor access point (by vee)"
/interface vlan
add comment="Internal devices such as switch, access point, management PC, etc. \
    (by vee)" interface=bridge1 name=vlan100 vlan-id=100
add comment="Hotspot users (by vee)" interface=bridge1 name=vlan101 vlan-id=101
add comment="Reserved for security devices such as CCTV. (by vee)" interface=\
    bridge1 name=vlan102 vlan-id=102
/interface list
add comment="(by vee)" name=WAN
add comment="(by vee)" name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add comment="For internal devices such as switch, access point, management PC. (\
    by vee)" name=internal-devices-pool1 ranges=192.168.231.2-192.168.231.254
add comment="For hotspot users (by vee)" name=hotspot-pool1 ranges=\
    192.168.241.2-192.168.241.254
add comment="For security devices such as CCTV. (by vee)" name=\
    security-devices-pool1 ranges=192.168.251.2-192.168.251.254
/ip dhcp-server
add address-pool=internal-devices-pool1 comment=\
    "Internal devices DHCP (by vee)" interface=vlan100 lease-time=1d name=\
    internal-devices-DHCP
add address-pool=hotspot-pool1 comment="Hotspot users DHCP (by vee)" interface=\
    vlan101 lease-time=1d name=hotspot-users-DHCP
add address-pool=security-devices-pool1 comment=\
    "Security devices DHCP (by vee)" interface=vlan102 lease-time=1d name=\
    security-devices-DHCP
/port
set 0 name=serial0
set 1 name=serial1
/system logging action
add name=logserver remote=192.168.231.2 target=remote
/user group
add comment="For API access only (by vee)" name=api policy="read,write,test,api,\
    !local,!telnet,!ssh,!ftp,!reboot,!policy,!winbox,!password,!web,!sniff,!sens\
    itive,!romon,!rest-api"
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 comment="Log server. VLAN: untagged 100. (by vee)" \
    frame-types=admit-only-untagged-and-priority-tagged interface=ether3 pvid=\
    100
add bridge=bridge1 comment="VPN. VLAN: untagged 100. (by vee)" frame-types=\
    admit-only-untagged-and-priority-tagged interface=ether4 pvid=100
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=ether6
add bridge=bridge1 interface=ether7
add bridge=bridge1 interface=ether8
add bridge=bridge1 interface=ether9
add bridge=bridge1 interface=ether10
add bridge=bridge1 comment="Old access point. VLAN: untagged 100. (by vee)" \
    frame-types=admit-only-untagged-and-priority-tagged interface=ether11 pvid=\
    101
add bridge=bridge1 interface=ether12
add bridge=bridge1 interface=ether13
/interface bridge vlan
add bridge=bridge1 comment="VLAN 100 (by vee)" tagged=\
    bridge1,ether2,ether6,ether7,ether8,ether9,ether10 untagged=\
    ether3,ether4,ether11 vlan-ids=100
add bridge=bridge1 comment="VLAN 101 (by vee)" tagged=\
    bridge1,ether6,ether7,ether9,ether10 untagged=ether11 vlan-ids=101
add bridge=bridge1 comment="VLAN 102 (by vee)" tagged=bridge1,ether8 vlan-ids=\
    102
/interface list member
add comment="From ISP modem/ONU (by vee)" interface=ether1-gateway list=WAN
add comment="All ports to inside building (by vee)" interface=bridge1 list=LAN
/ip address
add address=192.168.231.1/24 comment="Internal devices (by vee)" interface=\
    vlan100 network=192.168.231.0
add address=192.168.241.1/24 comment="Hotspot users (by vee)" interface=vlan101 \
    network=192.168.241.0
add address=192.168.251.1/24 comment="Security devices (by vee)" interface=\
    vlan102 network=192.168.251.0
add address=192.168.231.1 comment=\
    "Required default IP for this device. (by vee)" interface=bridge1 network=\
    192.168.231.1
/ip dhcp-client
add comment="From ISP modem/ONU (by vee)" interface=ether1-gateway
/ip dhcp-server lease
add address=192.168.231.2 comment="Log server. Keep this for displaying that thi\
    s IP is already in use (manual config in log server). (by vee)" \
    mac-address=90:09:D0:2D:A5:CF server=internal-devices-DHCP
add address=192.168.231.3 comment="Raspberry Pi (by vee)" mac-address=\
    DC:A6:32:C3:7C:EE server=internal-devices-DHCP
add address=192.168.251.31 comment="VStarcam IP camera (by vee)" mac-address=\
    48:02:2A:81:CA:5C server=security-devices-DHCP
add address=192.168.251.32 comment="Tapo IP camera (by vee)" mac-address=\
    5C:62:8B:29:28:6A server=security-devices-DHCP
add address=192.168.231.11 comment="TP-Link switch F2 (by vee)" mac-address=\
    9C:53:22:17:A7:06 server=internal-devices-DHCP
add address=192.168.231.12 comment="TP-Link switch F5 (by vee)" mac-address=\
    9C:53:22:17:A3:53 server=internal-devices-DHCP
/ip dhcp-server network
add address=192.168.231.0/24 comment="VLAN 100 network. Gateway IP must be route\
    r's IP first otherwise access point device can't sync NTP. (by vee)" \
    dns-server=192.168.231.1 gateway=192.168.231.1
add address=192.168.241.0/24 comment="VLAN 101 network. (by vee)" dns-server=\
    192.168.231.1 gateway=192.168.241.1
add address=192.168.251.0/24 comment="VLAN 102 network. (by vee)" dns-server=\
    192.168.231.1 gateway=192.168.251.1
/ip dns
set allow-remote-requests=yes servers=192.168.231.1,8.8.8.8,8.8.4.4
/ip dns static
add address=192.168.231.1 name=router
add address=192.168.231.1 name=my.status
add address=192.168.231.1 name=instant.hotspot
add address=192.168.231.1 name=instant.hotspot.local
add address=192.168.231.2 name=log.hotspot
add address=192.168.231.2 name=log.kp.local
add address=192.168.231.3 comment="VPN server (by vee)" regexp=\
    "vpn(server)\?\\.kp\\.local"
add address=192.168.231.3 comment="MariaDB server (by vee)" regexp=\
    "(sql|phpmyadmin)\\.kp\\.local"
add address=192.168.231.11 comment="Network switch floor 2 (by vee)" name=\
    f2.switch.kp.local
add address=192.168.231.12 comment="Network switch floor 5 (by vee)" name=\
    f5.switch.kp.local
/ip firewall address-list
add address=192.168.231.0-192.168.240.255 comment=\
    "All internal devices including reserved IP for the future. (by vee)" list=\
    internal-devices-adl
add address=192.168.241.0-192.168.250.255 comment=\
    "All hotspot users including reserved IP for the future. (by vee)" list=\
    hotspot-users
add address=192.168.251.0-192.168.260.255 comment=\
    "All security devices including reserved IP for the future. (by vee)" list=\
    security-devices
/ip firewall filter
add action=accept chain=input comment="Mikrotik API from internet (by vee)" \
    dst-port=8728 protocol=tcp
/ip firewall nat
add action=masquerade chain=srcnat comment=\
    "Internal devices masquerade and log traffic. (by vee)" log=yes \
    out-interface=ether1-gateway src-address-list=internal-devices-adl
add action=masquerade chain=srcnat comment=\
    "Hotspot users masquerade and log traffic. (by vee)" log=yes out-interface=\
    ether1-gateway src-address-list=hotspot-users
add action=masquerade chain=srcnat comment=\
    "Security devices masquerade but no log. (by vee)" src-address-list=\
    security-devices
add action=dst-nat chain=dstnat comment="Access VPN on Raspberry pi (by vee)" \
    dst-address-type=local dst-port=51820 protocol=udp to-addresses=\
    192.168.231.3 to-ports=51820
add action=dst-nat chain=dstnat comment=\
    "Forward external port to HTTP. (by vee)" dst-port=4002 protocol=tcp \
    to-addresses=192.168.231.3 to-ports=80
add action=dst-nat chain=dstnat comment=\
    "Forward external port to HTTPS. (by vee)" disabled=yes dst-port=4003 \
    protocol=tcp to-addresses=192.168.231.3 to-ports=443
/ip firewall service-port
set ftp disabled=yes
set tftp disabled=yes
set h323 disabled=yes
set sip disabled=yes
set pptp disabled=yes
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www port=8088
set ssh disabled=yes
set winbox address=192.168.231.0/24
set api-ssl disabled=yes
/ip ssh
set forwarding-enabled=remote
/system clock
set time-zone-name=Asia/Bangkok
/system clock manual
set time-zone=+07:00
/system identity
set name="KP MikroTik RB1100AHx4"
/system logging
add action=logserver topics=hotspot
add action=logserver topics=firewall
add action=logserver topics=dhcp
add action=logserver topics=web-proxy
add action=logserver topics=manager
add action=logserver topics=account
/system note
set note="Change NAS IP to 192.168.231.2"
/system ntp client
set enabled=yes
/system ntp client servers
add address=pool.ntp.org
add address=0.th.pool.ntp.org
add address=1.th.pool.ntp.org
add address=ntp.ku.ac.th
/tool bandwidth-server
set enabled=no
/tool graphing interface
add allow-address=192.168.231.3/32 store-on-disk=no
/tool graphing queue
add allow-address=192.168.231.3/32 store-on-disk=no
/tool graphing resource
add allow-address=192.168.231.3/32 store-on-disk=no

I think I’m already config all basic needs but Quick Set page still always show up.
How to skip this page and go to WebFig page instead?

Is this happening when you accessing directly using url http://192.168.231.1:8088/ or when using bookmark in browser? Maybe bookmarked url has #Quick_Set fragment - http://192.168.231.1:8088/#Quick_Set which opens Quick Set after login. Some browsers hides queries and fragments in address bar when it is not selected and may appear that you are accesing without it.
If is Quick Set still persists even when you accessing without fragment for some reason you can add #Interface fragment to url and it should force opening Webfig interface - http://192.168.231.1:8088/#Interface

This happening when I access directly using URL http://192.168.172.xx:8088 (where xx is random IP have got from ISP’s router) but access from 192.168.231:8088 is the same.
The login URL don’t have any # fragment.
This really is strange because I have another same RouterOS version but different model, it redirects me to WebFig page. Or is it because I never use default config & Quick Set when reset this RB1100?

It seems to be working like normal now (login and redirect to WebFig page - not Quick Set).

What I’ve changed is the line about “Required…”.

/ip address
add address=192.168.231.1/24 comment=\
    "Required default IP for this device. (by vee)" interface=bridge1 \
    network=192.168.231.0

I thought if it’s already in VLAN interface then it would be ok but it is not.