Skip to content

Commit

Permalink
Update on "[compiler][repro] Test fixture for fbt whitespace bug"
Browse files Browse the repository at this point in the history
[ghstack-poisoned]
  • Loading branch information
mofeiZ committed Jul 23, 2024
2 parents 2b62a9b + 3b9299f commit 60cbad1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Input

```javascript
import fbt from "fbt";
import fbt from 'fbt';

/**
* Currently fails with the following:
Expand Down Expand Up @@ -32,7 +32,7 @@ function Foo(props) {

export const FIXTURE_ENTRYPOINT = {
fn: Foo,
params: [{ name: "Jason" }],
params: [{name: 'Jason'}],
};

```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fbt from "fbt";
import fbt from 'fbt';

/**
* Currently fails with the following:
Expand Down Expand Up @@ -28,5 +28,5 @@ function Foo(props) {

export const FIXTURE_ENTRYPOINT = {
fn: Foo,
params: [{ name: "Jason" }],
params: [{name: 'Jason'}],
};

0 comments on commit 60cbad1

Please sign in to comment.