We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4a9f97 commit 4d3ad2dCopy full SHA for 4d3ad2d
1 file changed
src/extension/services/tipsNotificationsService/tipsNotificationService.ts
@@ -228,8 +228,8 @@ export class TipNotificationService implements vscode.Disposable {
228
229
if (readmeFile) {
230
const anchorLink: string = isGeneralTip
231
- ? this.getGeneralTipNotificationAnchorLinkByKey(tipKey)
232
- : this.getSpecificTipNotificationAnchorLinkByKey(tipKey);
+ ? this.getGeneralTipNotificationAnchorLinkByKey(tipKey as GeneralTipKey)
+ : this.getSpecificTipNotificationAnchorLinkByKey(tipKey as SpecificTipKey);
233
234
const uriFile = vscode.Uri.parse(
235
path.normalize(`file://${readmeFile}${anchorLink}`),
0 commit comments