chore: Move to prettier standard double quotes (#1309)
This commit is contained in:
@ -1,13 +1,13 @@
|
||||
// @flow
|
||||
import * as React from 'react';
|
||||
import { User, Collection } from '../models';
|
||||
import EmailTemplate from './components/EmailLayout';
|
||||
import Body from './components/Body';
|
||||
import Button from './components/Button';
|
||||
import Heading from './components/Heading';
|
||||
import Header from './components/Header';
|
||||
import Footer from './components/Footer';
|
||||
import EmptySpace from './components/EmptySpace';
|
||||
import * as React from "react";
|
||||
import { User, Collection } from "../models";
|
||||
import EmailTemplate from "./components/EmailLayout";
|
||||
import Body from "./components/Body";
|
||||
import Button from "./components/Button";
|
||||
import Heading from "./components/Heading";
|
||||
import Header from "./components/Header";
|
||||
import Footer from "./components/Footer";
|
||||
import EmptySpace from "./components/EmptySpace";
|
||||
|
||||
export type Props = {
|
||||
actor: User,
|
||||
@ -19,7 +19,7 @@ export type Props = {
|
||||
export const collectionNotificationEmailText = ({
|
||||
actor,
|
||||
collection,
|
||||
eventName = 'created',
|
||||
eventName = "created",
|
||||
}: Props) => `
|
||||
${collection.name}
|
||||
|
||||
@ -31,7 +31,7 @@ Open Collection: ${process.env.URL}${collection.url}
|
||||
export const CollectionNotificationEmail = ({
|
||||
actor,
|
||||
collection,
|
||||
eventName = 'created',
|
||||
eventName = "created",
|
||||
unsubscribeUrl,
|
||||
}: Props) => {
|
||||
return (
|
||||
|
Reference in New Issue
Block a user