Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit 22f4f41

Browse files
committed
test(tables): fix failing table tests
1 parent dac893d commit 22f4f41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/symbols.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ const TEXT = Object.freeze({
2424
MAXIMUM_DISTANCE: '100',
2525
});
2626

27-
const symbols = ['darwin'].indexOf(process.platform) >= 0 ? EMOJIS : TEXT;
27+
const symbols = ['darwin', 'linux'].indexOf(process.platform) >= 0 ? EMOJIS : TEXT;
2828

2929
export default symbols;

0 commit comments

Comments
 (0)