Skip to content
Snippets Groups Projects
Unverified Commit d62919a3 authored by Robert Dyer's avatar Robert Dyer Committed by GitHub
Browse files

[WIP] Don't show account tooltips during VRT (#2838)

* Don't show account tooltips during VRT

* add release note
parent 1c7d9bf1
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ import React from 'react';
import { css } from 'glamor';
import * as Platform from 'loot-core/client/platform';
import { type AccountEntity } from 'loot-core/src/types/models';
import { useNotes } from '../../hooks/useNotes';
......@@ -156,7 +157,7 @@ export function Account({
</View>
);
if (!needsTooltip) {
if (!needsTooltip || Platform.isPlaywright) {
return accountRow;
}
......
---
category: Bugfix
authors: [psybers]
---
Don't show account tooltips during VRT.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment