Skip to content

Commit fc1902b

Browse files
authored
fix: localization issue in msft app (#1846)
1 parent 5ddd948 commit fc1902b

File tree

1 file changed

+1
-1
lines changed
  • packages/fast-components-react-msft/app

1 file changed

+1
-1
lines changed

packages/fast-components-react-msft/app/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export default class App extends React.Component<{}, AppState> {
190190

191191
private handleUpdateDirection = (direction: Direction): void => {
192192
const newDir: Direction =
193-
direction === Direction.ltr ? Direction.rtl : Direction.ltr;
193+
direction === Direction.ltr ? Direction.ltr : Direction.rtl;
194194

195195
if (this.state.designSystem.direction === newDir) {
196196
return;

0 commit comments

Comments
 (0)