Skip to content

Commit

Permalink
Fix inverted sticker creator dropzone active text
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanHahn-Signal committed Oct 4, 2021
1 parent 2cf5150 commit 8a765da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sticker-creator/elements/DropZone.tsx
@@ -1,4 +1,4 @@
// Copyright 2019-2020 Signal Messenger, LLC
// Copyright 2019-2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only

import * as React from 'react';
Expand Down Expand Up @@ -58,8 +58,8 @@ export const DropZone: React.ComponentType<Props> = props => {
{!inner ? (
<p className={styles.text}>
{isDragActive
? i18n('StickerCreator--DropZone--staticText')
: i18n('StickerCreator--DropZone--activeText')}
? i18n('StickerCreator--DropZone--activeText')
: i18n('StickerCreator--DropZone--staticText')}
</p>
) : null}
</div>
Expand Down

0 comments on commit 8a765da

Please sign in to comment.