forked from jsnbuchanan/crowd-funder-for-time-pwa
refactor: move ProviderInfo interface to claims-result.ts
- Move ProviderInfo interface from ClaimView.vue to claims-result.ts - Add JSDoc documentation to interface properties - Update imports in ClaimView.vue - Clean up route handling using vue-router types - Remove outdated browser compatibility comment This improves type organization and documentation while reducing component-level interface definitions.
This commit is contained in:
@@ -97,15 +97,15 @@ const handleDeepLink = async (data: { url: string }) => {
|
||||
const paramRoutes = {
|
||||
"claim-add-raw": /^claim-add-raw\/(.+)$/,
|
||||
"claim-cert": /^claim-cert\/(.+)$/,
|
||||
claim: /^claim\/(.+)$/,
|
||||
"claim": /^claim\/(.+)$/,
|
||||
"confirm-gift": /^confirm-gift\/(.+)$/,
|
||||
"contact-edit": /^contact-edit\/(.+)$/,
|
||||
"contact-import": /^contact-import\/(.+)$/,
|
||||
did: /^did\/(.+)$/,
|
||||
"did": /^did\/(.+)$/,
|
||||
"invite-one-accept": /^invite-one-accept\/(.+)$/,
|
||||
"offer-details": /^offer-details\/(.+)$/,
|
||||
project: /^project\/(.+)$/,
|
||||
userProfile: /^userProfile\/(.+)$/,
|
||||
"project": /^project\/(.+)$/,
|
||||
"user-profile": /^user-profile\/(.+)$/,
|
||||
};
|
||||
|
||||
// Match route pattern and extract parameter
|
||||
|
||||
Reference in New Issue
Block a user