Skip to content

Commit fec4d88

Browse files
committed
fix type error
1 parent 34f4ae1 commit fec4d88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webviews/extension-side/dataframe/dataframeController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ export class DataframeController implements IExtensionSyncActivationService {
237237

238238
await workspace.fs.writeFile(uri, encoder.encode(csv));
239239

240-
await window.showInformationMessage(l10n.t('File saved to {0}', uri));
240+
await window.showInformationMessage(l10n.t('File saved to {0}', String(uri)));
241241
}
242242
} catch (error) {
243243
const message = error instanceof Error ? error.message : String(error);

0 commit comments

Comments
 (0)