load.json working just fine but tick.json is not

Creating my first datapack, load.json perfectly runs my load.mcfunction file, but for some reason tick.json isn't running tick.mcfunction My file structure is this Rangals Data Pack ->data -->minecraft --->tags ---->function ----->load.json

  "values":[
    "rangal_pack:load"
  ]
}```
----->tick.json
```{
  "values":[
    "rangal_pack:tick"
  ]
}```
-->rangal_pack
--->function
---->load.mcfunction
```say DataPack Loaded! :D```
---->tick.mcfunction
```say test```
->pack.mcmeta
```{
    "pack": {
        "pack_format": 71,
        "description": "Example datapack!"
    }
}```

again, the load function works just fine, and I can do /function rangal_pack:tick and it'll say test into chat, but /function #minecraft:tick doesn't work, just /function #minecraft:load, why is this???????
Continue to help post