Skip to content

Commit

Permalink
Copilot chat: fix typescript encoding format (#654)
Browse files Browse the repository at this point in the history
### Motivation and Context
Two typescript files are saved as UTF-8 with BOM, which will cause
eslint to generate warnings.

### Description
Resave the two files to UTF-8 format.
  • Loading branch information
TaoChenOSU committed Apr 26, 2023
1 parent aaba784 commit 08956e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.

export class DocumentImportService {
constructor(private readonly serviceUrl: string) { }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.

import React from 'react';
import { DocumentImportService } from './DocumentImport';
Expand Down

0 comments on commit 08956e4

Please sign in to comment.