This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/packages/design-system/src/components/TextField/TextField.overrides.ts b/packages/design-system/src/components/TextField/TextField.overrides.ts | |
index f9c1e81023..f849733c79 100644 | |
--- a/packages/design-system/src/components/TextField/TextField.overrides.ts | |
+++ b/packages/design-system/src/components/TextField/TextField.overrides.ts | |
@@ -17,229 +17,235 @@ export const textFieldComponentOverrides: Components<Theme> = { | |
size: 'medium' | |
}, | |
styleOverrides: { | |
- root: ({ ownerState, theme }) => ({ | |
- //searchBar overrides |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/packages/common/src/gql/code/generated.types.ts b/packages/common/src/gql/code/generated.types.ts | |
index a67a7cd14d..af97f5299a 100644 | |
--- a/packages/common/src/gql/code/generated.types.ts | |
+++ b/packages/common/src/gql/code/generated.types.ts | |
@@ -387,17 +387,6 @@ export enum CheckoutSourceType { | |
StarterKit = 'STARTER_KIT' | |
} | |
-/** | |
- * ClaimWhiteLabelDomain creates a domain and assigns it to the requesting user, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require 'throttler' | |
class Throttle < Faraday::Middleware | |
attr_reader :max, :path, :throttler | |
def call(env) | |
if env.url.path == path | |
if throttler.count <= max |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- :name: Bay Area FasTrak | |
:slug: fastrak | |
:login_url: https://www.bayareafastrak.org/en/home/index.shtml#signIn | |
:transactions_url: https://www.bayareafastrak.org/vector/account/transactions/batatransactionSearch.do | |
:login_type_radio_selector: | |
:login_username_selector: '#tt_username1' | |
:login_password_selector: '#tt_loginPassword1' | |
:login_button_selector: 'button[name="btnLogin"]' | |
:validate_login_success_selector: 'a[title="Transactions"]' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_index "spree_orders", ["ambassador_id"], name: "index_spree_orders_on_ambassador_id", using: :btree | |
add_index "spree_orders", ["approver_id"], name: "index_spree_orders_on_approver_id", using: :btree | |
add_index "spree_orders", ["bill_address_id"], name: "index_spree_orders_on_bill_address_id", using: :btree | |
add_index "spree_orders", ["completed_at"], name: "index_spree_orders_on_completed_at", using: :btree | |
add_index "spree_orders", ["confirmation_delivered"], name: "index_spree_orders_on_confirmation_delivered", using: :btree # should not index boolean fields | |
add_index "spree_orders", ["considered_risky"], name: "index_spree_orders_on_considered_risky", using: :btree # should not index boolean fields | |
add_index "spree_orders", ["created_at"], name: "index_spree_orders_on_created_at", using: :btree | |
add_index "spree_orders", ["created_by_id"], name: "index_spree_orders_on_created_by_id", using: :btree | |
add_index "spree_orders", ["email"], name: "index_spree_orders_on_email", using: :btree | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div dangerouslySetInnerHTML={{__html: ` | |
<div class="yotpo yotpo-main-widget" data-product-id="YSTLEG761218" data-currency="USD" data-description="<p>Guess what looks super cute on babies? Rainbows.</p> | |
<ul> | |
<li>out of the color &amp; size you need? more inventory coming in July!</li> | |
<li>stretch jersey 93% cotton / 7% spandex, OEKO-Tex Standard 100 certified fabric</li> | |
<li>wide, no-roll waistband</li> | |
<li>pre-washed</li> | |
</ul> | |
" data-name="the baby rainbow stripe legging" data-url="https://www.primary.com/shop/all/the-stripe-baby-legging" data-image-url="https://images-primary.freetls.fastly.net/product-images/the-stripe-baby-legging/the-stripe-baby-legging_double-rainbow-ivory_P.png?version=3" data-yotpo-element-id="1"> <div class="main-widget yotpo-display-wrapper yotpo-label-border" style="visibility: hidden;"> <div class="promoted-products-box" style="display: block;"> <div class="text-3xl yotpo-main-title">Other top rated products</div> <div class="yotpo-pager yotpo-hidden" style="display: none; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'faker' | |
require 'factory_girl_rails' | |
brand = Brand.find(4) | |
user = User.find_by(email: "corey@promoboxx.com") | |
def create_scoreboard(campaign) | |
return if %w(data message retailer_discovered).include?(campaign.campaign_type) | |
default_custom_html = <<-eos.strip_heredoc | |
<br/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts 'Grandma says, "HEY THERE, SONNY!"' | |
byecount = 0 | |
while byecount < 3 | |
reply = gets.chomp | |
if reply == 'BYE' | |
byecount += 1 # syntactic sugar ... same as (byecount = byecount + 1) | |
else | |
byecount = 0 |