Update clean inactive workspaces (#3600)
* Fix typo * Add dry-run option in clean inactive workspaces * Add logs * Chunk workspace metadata * Add BCC to clean workspace notification email * Send workspace to delete ids in one email * Update example * Update function naming
This commit is contained in:
@ -3,11 +3,11 @@ import { Container, Html } from '@react-email/components';
|
||||
import { BaseHead } from 'src/components/BaseHead';
|
||||
import { Logo } from 'src/components/Logo';
|
||||
|
||||
export const BaseEmail = ({ children }) => {
|
||||
export const BaseEmail = ({ children, width = 290 }) => {
|
||||
return (
|
||||
<Html lang="en">
|
||||
<BaseHead />
|
||||
<Container width={290}>
|
||||
<Container width={width}>
|
||||
<Logo />
|
||||
{children}
|
||||
</Container>
|
||||
|
||||
Reference in New Issue
Block a user