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

Commit bbd1c98

Browse files
committed
fix(plugins/plugin-client-common): Screenshot modal never goes away
Fixes #4979
1 parent bf26d14 commit bbd1c98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/plugin-client-common/src/components/Client/Screenshot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export default class Screenshot extends React.PureComponent<Props, State> {
265265
/** Render a ToastNotification to tell the user what we captured */
266266
private notification() {
267267
if (this.state && this.state.captured) {
268-
const timeout = 100000 * 1000
268+
const timeout = 10 * 1000
269269
const alert = {
270270
type: 'success' as const,
271271
title: strings('Screenshot'),

0 commit comments

Comments
 (0)