Queue Retaining Records with subsequent Clicks (interactions)

I removed the snippet from the Queue Interactions. Now you should only see the “Activate and set model condition” and Query Contact model actions.

<skuidpage unsavedchangeswarning="yes" showsidebar="true" showheader="true" personalizationmode="server">   <models>
      <model id="Accounts" limit="20" query="true" createrowifnonefound="false" sobject="Account" doclone="" type="" datasource="salesforce" processonclient="true">
         <fields>
            <field id="Id"/>
            <field id="Name"/>
         </fields>
         <conditions logic=""/>
         <actions/>
      </model>
      <model id="Contacts" limit="" query="false" createrowifnonefound="false" sobject="Contact" doclone="" type="" datasource="salesforce" processonclient="true">
         <fields>
            <field id="Name"/>
            <field id="AccountId"/>
            <field id="Account.Name"/>
         </fields>
         <conditions>
<condition type="fieldvalue" value="" enclosevalueinquotes="true" field="AccountId" state="filterableoff" inactive="true" name="AccountId"/>
</conditions>
         <actions/>
      </model>
   </models>
   <components>
      <panelset type="standard" scroll="" uniqueid="sk-3RmbJV-92">
         <panels>
            <panel type="left" width="350">
               <components>
                  <queue tagrendertype="template" querystring="id={{Id}}" defaultitemparameter="id" searchbox="true" tokenizesearch="true" model="Accounts" title="Accounts" searchmethod="server" emptysearchbehavior="query" itemicon="sk-icon-account-profile" uniqueid="sk-3RmbJV-93">
                     <rendertemplate>{{{Name}}}</rendertemplate>
                     <searchfields/>
                     
                  <interactions>
<interaction type="tap">
                        
                     <action type="setCondition" model="Contacts" condition="AccountId" value="{{Id}}"/>
<action type="requeryModel" model="Contacts" behavior="standard"/>
<action type="drawer">
                           <drawer title="Drawer Area" width="90%" closehandle="true">
                              <components>
                                 <queue tagrendertype="template" querystring="id={{Id}}" searchbox="true" tokenizesearch="true" model="Contacts" uniqueid="" module="SkuidCRM">
                                    <conditions>
                                       <condition type="contextrow" field="AccountId" mergefield="Id" operator="="/>
                                    </conditions>
                                    <rendertemplate>{{{Name}}}</rendertemplate>
                                    <renderconditions logictype="and"/>
                                 <interactions/>
</queue>
                              </components>
                              <beforeload>
                                 
                              </beforeload>
                           </drawer>
                        </action>
</interaction>
</interactions>
<renderconditions logictype="and"/>
</queue>
               </components>
            </panel>
            <panel>
               <components>
                  
               </components>
            </panel>
         </panels>
      </panelset>
   </components>
   <resources>
      <labels/>
      <javascript>
<jsitem location="inlinesnippet" name="emptyModel" cachelocation="false">var params = arguments[0],
 $ = skuid.$;


var ContactModel = skuid.model.getModel('Contacts');

alert("running the empty snippet");

ContactModel.emptyData();
</jsitem>
</javascript>
      <css/>
   </resources>
<styles>
<styleitem type="background" bgtype="none"/>
</styles>
</skuidpage>