fixed group reactivity

This commit is contained in:
2025-06-17 09:45:01 +02:00
parent 2972bb9e91
commit 4796dfc095
5 changed files with 43 additions and 27 deletions

View File

@ -68,7 +68,7 @@ export const getSingleRouteParam = (
param: string | string[] | LocationQueryValue | LocationQueryValue[],
): string => {
const _param = Array.isArray(param) ? param.at(0) ?? '' : param ?? ''
console.log('getSingleRouteParam found:', _param, param)
//console.log('getSingleRouteParam found:', _param, param)
return decodeURIComponent(_param)
}