@autobusal/common 1.33.10 → 1.33.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.33.11
4
+
5
+ ### Fixed
6
+
7
+ - **The "Add Funds" link in the Agents and Visitors lists 404'd.** It pointed at `/admin/funds/manage/:id`, a route that has never existed; the funds form lives at `/account/funds/manage/:id` (admin + financer). (Platform audit ADM-06g.)
8
+
3
9
  ## 1.33.9
4
10
 
5
11
  ### Fixed
@@ -24,7 +24,10 @@ const ContactInfo = ({ item, t }: Props): JSX.Element => {
24
24
  </LinkMore>
25
25
  ) }
26
26
 
27
- <LinkMore to={ `/admin/funds/manage/${ item.user.id }` } onClick={ (event) => onClick(event) }>
27
+ { /* Claude - 2026-08-22 (audit ADM-06g): the funds form lives at
28
+ /account/funds/manage/:id (admin+financer guarded); /admin/funds/*
29
+ was never a route and 404'd from every Agents/Visitors list. */ }
30
+ <LinkMore to={ `/account/funds/manage/${ item.user.id }` } onClick={ (event) => onClick(event) }>
28
31
  <RiMoneyEuroCircleFill />
29
32
  { t('contact_info.add_funds', { ns: 'common' }) }
30
33
  </LinkMore>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/common",
3
- "version": "1.33.10",
3
+ "version": "1.33.11",
4
4
  "author": "Ferjolt Ozuni",
5
5
  "type": "module",
6
6
  "main": "index.ts"