Skip to content
Snippets Groups Projects
Unverified Commit e5fcbc4b authored by Nick Fitzpatrick's avatar Nick Fitzpatrick Committed by GitHub
Browse files

RC -> beta (#48346)

parent 154e6292
No related branches found
Tags v0.30.4
No related merge requests found
......@@ -12,7 +12,7 @@ const DEFAULT_DATE = new Date("2024-09-27");
const user = userEvent.setup({ delay: null });
const setup = ({ versionTag = "v0.51.0-RC" } = {}) => {
const setup = ({ versionTag = "v0.51.0-beta" } = {}) => {
renderWithProviders(<SwagButton />, {
storeInitialState: {
currentUser: createMockUser({
......@@ -27,7 +27,7 @@ const setup = ({ versionTag = "v0.51.0-RC" } = {}) => {
});
};
it("should render a button when date is below threshold and version includes RC", () => {
it("should render a button when date is below threshold and version includes beta", () => {
jest.useFakeTimers({
now: DEFAULT_DATE,
});
......
......@@ -18,7 +18,7 @@ export const SwagModal = (props: Pick<ModalProps, "opened" | "onClose">) => {
return (
<Modal title={t`A little something from us to you`} {...props} size={560}>
<Text mt="0.5rem">
{t`As a thank-you for trying out this release candidate we’d love to send you some swag, while our supplies last. Click the button to give us your details and we’ll send you an email with instructions.`}
{t`As a thank-you for trying out this beta we’d love to send you some swag, while our supplies last. Click the button to give us your details and we’ll send you an email with instructions.`}
</Text>
<Flex justify="center" pt="1.5rem">
<Button
......
export const SWAG_51_LOCAL_STORAGE_KEY = "mb-swag-51";
export const SWAG_LINK = "https://metaba.se/rc-51-swag";
export const SWAG_LINK = "https://metaba.se/51-beta-swag";
......@@ -4,7 +4,7 @@ export const isSwagEnabled = (version?: string) => {
}
const CUTOFF_DATE = new Date("2024-11-01");
const versionRegex = /rc/i;
const versionRegex = /beta/i;
if (!version.match(versionRegex)) {
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment