fix(ui): add close button to all success toasts

This commit is contained in:
Jason
2025-12-16 10:56:39 +08:00
parent 510a013449
commit d4f33224c6
29 changed files with 98 additions and 56 deletions
+2 -2
View File
@@ -86,7 +86,7 @@ export const deeplinkApi = {
* @returns Merged deep link request with config fields populated
*/
mergeDeeplinkConfig: async (
request: DeepLinkImportRequest
request: DeepLinkImportRequest,
): Promise<DeepLinkImportRequest> => {
return invoke("merge_deeplink_config", { request });
},
@@ -97,7 +97,7 @@ export const deeplinkApi = {
* @returns Import result based on resource type
*/
importFromDeeplink: async (
request: DeepLinkImportRequest
request: DeepLinkImportRequest,
): Promise<ImportResult> => {
return invoke("import_from_deeplink_unified", { request });
},