Skip to content

Commit 2647976

Browse files
author
Jeffrey Biles
committed
spacing
1 parent a78269a commit 2647976

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/composition/useEmailSelection.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { reactive } from 'vue';
22
import axios from 'axios';
33

4-
let emailSet = new Set()
4+
let emailSet = new Set()
5+
56
export const useEmailSelection = function(){
67
const emails = reactive(emailSet)
8+
79
const forSelected = (fn) => {
810
emails.forEach(email => {
911
fn(email)

0 commit comments

Comments
 (0)