Skip to content

Commit

Permalink
fix(clipboard): add flag to toggle all list (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
onetdev authored Nov 29, 2024
1 parent bf744d5 commit 872ac66
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/components/atoms/CopyMarker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const CopyMarker: FunctionComponent<CopyWithUrl> = ({
const { t } = useTranslation();

const handleCopy = (e: ClipboardEvent<HTMLDivElement>) => {
console.log(append);
const selection = window.getSelection()?.toString() || '';

if (append === 'url') {
Expand Down
1 change: 1 addition & 0 deletions src/lib/state/experience_flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ export const useExperienceFlagsStore = create(
flaps: false,
oneByOne: false,
},
clipboardMarker: false,
contentPaywall: false,
deadPixel: false,
disableContextMenu: false,
Expand Down

0 comments on commit 872ac66

Please sign in to comment.