Skip to content

Commit

Permalink
fix: when saveTiddler, tags should be string, not string[]
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Dec 1, 2024
1 parent 54eaac4 commit 86c846f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/NativeService/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function useRegisterReceivingShareIntent() {
created,
modified: created,
creator: i18n.t('Share.TidGiMobileShare'),
tags: newTagForSharedContent === '' ? [] : [newTagForSharedContent],
tags: newTagForSharedContent,
});
setImportSuccessSnackBarVisible(true);
} catch (error) {
Expand Down

0 comments on commit 86c846f

Please sign in to comment.