mirror of
https://github.com/we-promise/sure.git
synced 2026-04-18 11:34:13 +00:00
* fix: Handle conditional loading of Plaid Link script * fix: Plaid accounts not linking on first sync * fix: Handle Plaid script loading edge cases * fix: Use connection token for disconnect safety and retry failed script loads * fix: Destroy Plaid Link handler on controller disconnect * fix: Add timeout to Plaid CDN script loader to prevent deadlocks
10 lines
322 B
Plaintext
10 lines
322 B
Plaintext
<%# locals: (link_token:, region:, item_id:, is_update: false) %>
|
|
|
|
<%= tag.div data: {
|
|
controller: "plaid",
|
|
plaid_link_token_value: link_token,
|
|
plaid_region_value: region,
|
|
plaid_item_id_value: item_id,
|
|
plaid_is_update_value: is_update
|
|
} %>
|